-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
4 changed files
with
23 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,10 @@ | ||
#!/bin/sh | ||
|
||
drop_privs_cmd() { | ||
if [ $(id -u) != 0 ]; then | ||
# Don't need to drop privs if EUID != 0 | ||
return | ||
elif [ -x /sbin/su-exec ]; then | ||
# Alpine | ||
echo su-exec | ||
else | ||
# Others | ||
echo gosu flink | ||
fi | ||
} | ||
|
||
# Add in extra configs set by the operator | ||
# Map config from FlinkK8sOperator to base container | ||
# https://github.com/lyft/flinkk8soperator/issues/135 | ||
# https://github.com/docker-flink/docker-flink/pull/91 | ||
if [ -n "$OPERATOR_FLINK_CONFIG" ]; then | ||
echo "$OPERATOR_FLINK_CONFIG" >> "/usr/local/flink-conf.yaml" | ||
fi | ||
|
||
envsubst < /usr/local/flink-conf.yaml > $FLINK_HOME/conf/flink-conf.yaml | ||
|
||
COMMAND=$@ | ||
|
||
if [ $# -lt 1 ]; then | ||
COMMAND="local" | ||
fi | ||
|
||
if [ "$COMMAND" = "help" ]; then | ||
echo "Usage: $(basename "$0") (jobmanager|taskmanager|local|help)" | ||
exit 0 | ||
elif [ "$FLINK_DEPLOYMENT_TYPE" = "jobmanager" ]; then | ||
echo "Starting Job Manager" | ||
echo "config file: " && grep '^[^\n#]' "$FLINK_HOME/conf/flink-conf.yaml" | ||
exec $(drop_privs_cmd) "$FLINK_HOME/bin/jobmanager.sh" start-foreground | ||
elif [ "$FLINK_DEPLOYMENT_TYPE" = "taskmanager" ]; then | ||
echo "Starting Task Manager" | ||
echo "config file: " && grep '^[^\n#]' "$FLINK_HOME/conf/flink-conf.yaml" | ||
exec $(drop_privs_cmd) "$FLINK_HOME/bin/taskmanager.sh" start-foreground | ||
elif [ "$COMMAND" = "local" ]; then | ||
echo "Starting local cluster" | ||
exec $(drop_privs_cmd) "$FLINK_HOME/bin/jobmanager.sh" start-foreground local | ||
export FLINK_PROPERTIES="`echo \"${OPERATOR_FLINK_CONFIG}\" | envsubst`" | ||
fi | ||
|
||
exec "$@" | ||
exec /docker-entrypoint.sh "$@" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters