[bitnami/schema-registry] Release schema-registry-7.4.7-debian-12-r4 (#75046)

Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2024-11-20 15:30:30 +01:00
committed by GitHub
parent 61f0d096ac
commit b3d218804d
3 changed files with 6 additions and 6 deletions

View File

@@ -9,11 +9,11 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2024-11-09T23:44:42Z" \
org.opencontainers.image.created="2024-11-20T13:10:54Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/schema-registry/README.md" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="7.4.7-debian-12-r3" \
org.opencontainers.image.ref.name="7.4.7-debian-12-r4" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/schema-registry" \
org.opencontainers.image.title="schema-registry" \
org.opencontainers.image.vendor="Broadcom, Inc." \

View File

@@ -3,7 +3,7 @@
services:
kafka-0:
image: docker.io/bitnami/kafka:3.8
image: docker.io/bitnami/kafka:3.9
environment:
# KRaft settings
- KAFKA_CFG_NODE_ID=0
@@ -19,7 +19,7 @@ services:
volumes:
- 'kafka0_data:/bitnami/kafka'
kafka-1:
image: docker.io/bitnami/kafka:3.8
image: docker.io/bitnami/kafka:3.9
environment:
# KRaft settings
- KAFKA_CFG_NODE_ID=1

View File

@@ -151,7 +151,7 @@ schema_registry_validate() {
fi
if [[ "$brokers_auth_protocol" =~ SASL ]]; then
if [[ -z "$SCHEMA_REGISTRY_KAFKA_SASL_USERS" ]] || [[ -z "$SCHEMA_REGISTRY_KAFKA_SASL_PASSWORDS" ]]; then
warn "In order to configure SASL authentication for Kafka, you may need to provide the SASL credentials by setting the SCHEMA_REGISTRY_KAFKA_SASL_USERS and SCHEMA_REGISTRY_KAFKA_SASL_PASSWORDS environment variables"
warn "In order to configure SASL authentication for Kafka, most auth protocols require providing the SASL credentials. Set the environment variables SCHEMA_REGISTRY_KAFKA_SASL_USERS and SCHEMA_REGISTRY_KAFKA_SASL_PASSWORDS if your auth protocol requires it."
fi
fi
else
@@ -302,7 +302,7 @@ schema_registry_initialize() {
schema_registry_conf_set "kafkastore.sasl.jaas.config" "$aux_string"
fi
# SSL setup
# TLS setup
[[ -f "${SCHEMA_REGISTRY_CERTS_DIR}/schema-registry.keystore.jks" ]] && schema_registry_conf_set "kafkastore.ssl.keystore.location" "${SCHEMA_REGISTRY_CERTS_DIR}/schema-registry.keystore.jks"
[[ -n "$SCHEMA_REGISTRY_KAFKA_KEYSTORE_PASSWORD" ]] && schema_registry_conf_set "kafkastore.ssl.keystore.password" "$SCHEMA_REGISTRY_KAFKA_KEYSTORE_PASSWORD"
[[ -f "${SCHEMA_REGISTRY_CERTS_DIR}/schema-registry.truststore.jks" ]] && schema_registry_conf_set "kafkastore.ssl.truststore.location" "${SCHEMA_REGISTRY_CERTS_DIR}/schema-registry.truststore.jks"