Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/6232#discussion_r199331211
--- Diff:
flink-mesos/src/main/java/org/apache/flink/mesos/runtime/clusterframework/MesosTaskManagerParameters.java
---
@@ -101,6 +101,12 @@
.withDescription("Custom parameters to be passed into docker
run command when using the docker containerizer." +
" Comma separated list of \"key=value\" pairs. The
\"value\" may contain '='.");
+ public static final ConfigOption<Boolean>
MESOS_RM_CONTAINER_DOCKER_FORCE_PULL_IMAGE =
+
key("mesos.resourcemanager.tasks.container.docker.forcePullImage")
--- End diff --
In order to make it consistent with other configuration options, we should
name this config option `force-pull-image`.
---