[bitnami/grafana] Release 9.3.2-debian-11-r9 (#19951)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2023-01-12 05:23:27 +01:00
committed by GitHub
parent fa1a6b971b
commit 0a221f62a6
3 changed files with 4 additions and 2 deletions

View File

@@ -4,7 +4,8 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="9.3.2-debian-11-r8" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="9.3.2-debian-11-r9" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/grafana" \
org.opencontainers.image.title="grafana" \
org.opencontainers.image.vendor="VMware, Inc." \

View File

@@ -31,7 +31,7 @@ get_sematic_version () {
while [[ $i -lt $n ]]; do
if [[ -n "${BASH_REMATCH[$i]}" ]] && [[ "${BASH_REMATCH[$i]:0:1}" != '.' ]]; then
version_sections[$j]=${BASH_REMATCH[$i]}
version_sections[j]="${BASH_REMATCH[$i]}"
((j++))
fi
((i++))

View File

@@ -259,6 +259,7 @@ grafana_configure_from_environment_variables() {
local section_key_pair section key value
# Map environment variables to config properties
for var in "${!GRAFANA_CFG_@}"; do
# shellcheck disable=SC2001
section_key_pair="$(sed 's/^GRAFANA_CFG_//g' <<< "$var" | tr '[:upper:]' '[:lower:]')"
section="${section_key_pair/_*}"
key="${section_key_pair#*_}"