[bitnami/kibana] Release 8.6.2-debian-11-r7 (#27006)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-03-11 02:28:50 +01:00 committed by GitHub
parent ec6251fbd1
commit 8fcd54048f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View File

@ -3,10 +3,10 @@ FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-03-08T00:11:00Z" \
org.opencontainers.image.created="2023-03-11T00:48:28Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="8.6.2-debian-11-r6" \
org.opencontainers.image.ref.name="8.6.2-debian-11-r7" \
org.opencontainers.image.title="kibana" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="8.6.2"

View File

@ -29,6 +29,7 @@ kibana_env_vars=(
KIBANA_WAIT_READY_MAX_RETRIES
KIBANA_INITSCRIPTS_START_SERVER
KIBANA_FORCE_INITSCRIPTS
KIBANA_DISABLE_STRICT_CSP
KIBANA_CERTS_DIR
KIBANA_SERVER_ENABLE_TLS
KIBANA_SERVER_KEYSTORE_LOCATION
@ -97,6 +98,7 @@ KIBANA_WAIT_READY_MAX_RETRIES="${KIBANA_WAIT_READY_MAX_RETRIES:-"${KIBANA_INITSC
export KIBANA_WAIT_READY_MAX_RETRIES="${KIBANA_WAIT_READY_MAX_RETRIES:-30}"
export KIBANA_INITSCRIPTS_START_SERVER="${KIBANA_INITSCRIPTS_START_SERVER:-yes}"
export KIBANA_FORCE_INITSCRIPTS="${KIBANA_FORCE_INITSCRIPTS:-no}"
export KIBANA_DISABLE_STRICT_CSP="${KIBANA_DISABLE_STRICT_CSP:-no}"
# Kibana server SSL/TLS configuration
export KIBANA_CERTS_DIR="${KIBANA_CERTS_DIR:-${KIBANA_CONF_DIR}/certs}"

View File

@ -129,6 +129,9 @@ kibana_initialize() {
kibana_conf_set "elasticsearch.username" "kibana_system"
kibana_conf_set "elasticsearch.password" "$KIBANA_PASSWORD"
fi
if is_boolean_yes "$KIBANA_DISABLE_STRICT_CSP"; then
kibana_conf_set "csp.strict" "false" "bool"
fi
if is_boolean_yes "$KIBANA_SERVER_ENABLE_TLS"; then
kibana_conf_set "server.ssl.enabled" "true" "bool"
if "$KIBANA_SERVER_TLS_USE_PEM"; then