2.8.1-debian-10-r24 release
This commit is contained in:
parent
0c6de038b9
commit
9f33c787f7
|
|
@ -21,7 +21,7 @@ RUN ln -s /opt/bitnami/scripts/kafka/run.sh /run.sh
|
|||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/kafka/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="kafka" \
|
||||
BITNAMI_IMAGE_VERSION="2.8.1-debian-10-r23" \
|
||||
BITNAMI_IMAGE_VERSION="2.8.1-debian-10-r24" \
|
||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:/opt/bitnami/kafka/bin:$PATH"
|
||||
|
||||
EXPOSE 9092
|
||||
|
|
|
|||
|
|
@ -140,3 +140,24 @@ parse_uri() {
|
|||
esac
|
||||
[[ "$uri" =~ $URI_REGEX ]] && echo "${BASH_REMATCH[${index}]}"
|
||||
}
|
||||
|
||||
########################
|
||||
# Wait for a HTTP connection to succeed
|
||||
# Globals:
|
||||
# *
|
||||
# Arguments:
|
||||
# $1 - URL to wait for
|
||||
# $2 - Maximum amount of retries (optional)
|
||||
# $3 - Time between retries (optional)
|
||||
# Returns:
|
||||
# true if the HTTP connection succeeded, false otherwise
|
||||
#########################
|
||||
wait_for_http_connection() {
|
||||
local url="${1:?missing url}"
|
||||
local retries="${2:-}"
|
||||
local sleep_time="${3:-}"
|
||||
if ! retry_while "debug_execute curl --silent ${url}" "$retries" "$sleep_time"; then
|
||||
error "Could not connect to ${url}"
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
|
|
|||
|
|
@ -44,7 +44,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.0.0`, `3.0.0-debian-10-r5`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kafka/blob/3.0.0-debian-10-r5/3/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.8.1`, `2.8.1-debian-10-r23` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kafka/blob/2.8.1-debian-10-r23/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.8.1`, `2.8.1-debian-10-r24` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kafka/blob/2.8.1-debian-10-r24/2/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/kafka GitHub repo](https://github.com/bitnami/bitnami-docker-kafka).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue