[IMP] entrypoint.sh: do not always exist with an error status

With `set -e` we already treat error exit statuses as errors. The motivation here is that one off "Job"s that run and exit with success should not be immediately restarted by the controller (aka kubernetes).
This commit is contained in:
Jared Kipe
2021-02-24 13:49:29 -08:00
parent 1128e20f26
commit d1b5c0406c

View File

@@ -68,5 +68,3 @@ case "$1" in
*)
exec "$@"
esac
exit 1