3.2.1-debian-10-r71 release

This commit is contained in:
Bitnami Bot 2022-04-12 12:10:46 +00:00 committed by Bitnami Containers
parent 0de778d7d8
commit 36b19e3730
2 changed files with 21 additions and 2 deletions

View File

@ -28,5 +28,24 @@ if [[ "$1" = "/opt/bitnami/scripts/spark/run.sh" ]]; then
info "** Spark setup finished! **"
fi
# Spark has an special 'driver' command which is an alias for spark-submit
# https://github.com/apache/spark/blob/master/resource-managers/kubernetes/docker/src/main/dockerfiles/spark/entrypoint.sh
case "$1" in
driver)
shift 1
CMD=(
"/opt/bitnami/spark/bin/spark-submit"
--master "${SPARK_MASTER_URL}"
--conf "spark.jars.ivy=/tmp/.ivy"
--deploy-mode client
"$@"
)
;;
*)
# Non-spark-on-k8s command provided, proceeding in pass-through mode
CMD=("$@")
;;
esac
echo ""
exec "$@"
exec "${CMD[@]}"

View File

@ -45,7 +45,7 @@ Non-root container images add an extra layer of security and are generally recom
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`3`, `3-debian-10`, `3.2.1`, `3.2.1-debian-10-r70`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spark/blob/3.2.1-debian-10-r70/3/debian-10/Dockerfile)
* [`3`, `3-debian-10`, `3.2.1`, `3.2.1-debian-10-r71`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-spark/blob/3.2.1-debian-10-r71/3/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/spark GitHub repo](https://github.com/bitnami/bitnami-docker-spark).