2.8.0-debian-10-r76 release
This commit is contained in:
parent
9e6f742725
commit
ce4e2ac865
|
|
@ -13,7 +13,7 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "11.0.12-0
|
|||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.13.0-0" --checksum fd7257c2736164d02832dbf72e2c1ed9d875bf3e32f0988520796bc503330129
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wait-for-port" "1.0.0-3" --checksum 7521d9a4f9e4e182bf32977e234026caa7b03759799868335bccb1edd8f8fd12
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.0-3" --checksum 8179ad1371c9a7d897fe3b1bf53bbe763f94edafef19acad2498dd48b3674efe
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kafka" "2.8.0-1" --checksum fb5c58e1d152fa21bcced3e5457bbbc8102ca0fe9c4c90c7a1b0c7e0b924b547
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kafka" "2.8.0-2" --checksum 9227ad40efa6d097105c16622b1c14031a1d7378d7f331123c507455968b953c
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
RUN ln -s /opt/bitnami/scripts/kafka/entrypoint.sh /entrypoint.sh
|
||||
RUN ln -s /opt/bitnami/scripts/kafka/run.sh /run.sh
|
||||
|
|
@ -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.0-debian-10-r75" \
|
||||
BITNAMI_IMAGE_VERSION="2.8.0-debian-10-r76" \
|
||||
PATH="/opt/bitnami/java/bin:/opt/bitnami/common/bin:/opt/bitnami/kafka/bin:$PATH"
|
||||
|
||||
EXPOSE 9092
|
||||
|
|
|
|||
|
|
@ -15,10 +15,10 @@
|
|||
},
|
||||
"kafka": {
|
||||
"arch": "amd64",
|
||||
"digest": "fb5c58e1d152fa21bcced3e5457bbbc8102ca0fe9c4c90c7a1b0c7e0b924b547",
|
||||
"digest": "9227ad40efa6d097105c16622b1c14031a1d7378d7f331123c507455968b953c",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "2.8.0-1"
|
||||
"version": "2.8.0-2"
|
||||
},
|
||||
"render-template": {
|
||||
"arch": "amd64",
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ kafka_configure_default_truststore_locations() {
|
|||
|
||||
# Kafka truststore
|
||||
if { [[ "${KAFKA_CFG_LISTENERS:-}" =~ SSL ]] || [[ "${KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP:-}" =~ SSL ]]; } && is_empty_value "$KAFKA_TLS_TRUSTSTORE_FILE"; then
|
||||
local -r kafka_truststore_filename="kafka.truststore.jks"
|
||||
local kafka_truststore_filename="kafka.truststore.jks"
|
||||
[[ "$KAFKA_TLS_TYPE" = "PEM" ]] && kafka_truststore_filename="kafka.truststore.pem"
|
||||
if [[ -f "${KAFKA_CERTS_DIR}/${kafka_truststore_filename}" ]]; then
|
||||
# Mounted in /opt/bitnami/kafka/conf/certs
|
||||
|
|
@ -83,7 +83,7 @@ kafka_configure_default_truststore_locations() {
|
|||
fi
|
||||
# Zookeeper truststore
|
||||
if [[ "${KAFKA_ZOOKEEPER_PROTOCOL:-}" =~ SSL ]] && is_empty_value "$KAFKA_ZOOKEEPER_TLS_TRUSTSTORE_FILE"; then
|
||||
local -r zk_truststore_filename="zookeeper.truststore.jks"
|
||||
local zk_truststore_filename="zookeeper.truststore.jks"
|
||||
[[ "$KAFKA_ZOOKEEPER_TLS_TYPE" = "PEM" ]] && zk_truststore_filename="zookeeper.truststore.pem"
|
||||
if [[ -f "${KAFKA_CERTS_DIR}/${zk_truststore_filename}" ]]; then
|
||||
# Mounted in /opt/bitnami/kafka/conf/certs
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
## Supported tags and respective `Dockerfile` links
|
||||
|
||||
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/).
|
||||
* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r75`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kafka/blob/2.8.0-debian-10-r75/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.8.0`, `2.8.0-debian-10-r76`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-kafka/blob/2.8.0-debian-10-r76/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