wangyang0918 opened a new pull request #49: URL: https://github.com/apache/flink-docker/pull/49
This PR will rename `native-k8s` command to a more general name `generic` in docker-entrypoint.sh. Also the `bash -c` wrapper will be removed. Then for native K8s integration, Flink should generate a full command with `bash -c` wrapper. The new introduced `generic` command could be used as followings. ``` docker run flink:1.12.1 generic ls /tmp docker run flink:1.12.1 generic bash -c '$FLINK_HOME/bin/flink run -h' docker run flink:1.12.1 generic bash -c '$JAVA_HOME/bin/java -classpath $FLINK_CLASSPATH ... org.apache.flink.kubernetes.entrypoint.KubernetesApplicationClusterEntrypoint ...' ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
