Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<td><h5>execution.target</h5></td>
<td style="word-wrap: break-word;">(none)</td>
<td>String</td>
<td>The deployment target for the execution. This can take one of the following values:<ul><li>remote</li><li>local</li><li>yarn-per-job</li><li>yarn-session</li><li>kubernetes-session</li></ul>.</td>
<td>The deployment target for the execution. This can take one of the following values when execute bin/flink run:<ul><li>remote</li><li>local</li><li>yarn-per-job</li><li>yarn-session</li><li>kubernetes-session</li></ul>, and can take one of the following values when execute bin/flink run-application:<ul><li>yarn-application</li><li>kubernetes-application</li></ul>.</td>
</tr>
</tbody>
</table>
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,17 @@ public class DeploymentOptions {
.withDescription(
Description.builder()
.text(
"The deployment target for the execution. This can take one of the following values:")
"The deployment target for the execution. This can take one of the following values "
+ "when execute bin/flink run:")
.list(
text("remote"),
text("local"),
text("yarn-per-job"),
text("yarn-session"),
text("kubernetes-session"))
.text(
", and can take one of the following values when execute bin/flink run-application:")
.list(text("yarn-application"), text("kubernetes-application"))
.text(".")
.build());

Expand Down