Skip to content

Commit 9897318

Browse files
bitnami-botBitnami Bot
andauthored
[bitnami/spring-cloud-skipper] Release spring-cloud-skipper-2.11.5-debian-12-r11 (#78906)
Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com> Co-authored-by: Bitnami Bot <bitnami-bot@vmware.com>
1 parent 8e9bd58 commit 9897318

File tree

3 files changed

+44
-13
lines changed

3 files changed

+44
-13
lines changed

bitnami/spring-cloud-skipper/2/debian-12/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ ARG TARGETARCH
99

1010
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
1111
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
12-
org.opencontainers.image.created="2025-02-21T09:42:31Z" \
12+
org.opencontainers.image.created="2025-03-15T18:42:07Z" \
1313
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
1414
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/spring-cloud-skipper/README.md" \
15-
org.opencontainers.image.licenses="Apache-2.0" \
16-
org.opencontainers.image.ref.name="2.11.5-debian-12-r10" \
15+
org.opencontainers.image.ref.name="2.11.5-debian-12-r11" \
1716
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/spring-cloud-skipper" \
1817
org.opencontainers.image.title="spring-cloud-skipper" \
1918
org.opencontainers.image.vendor="Broadcom, Inc." \
@@ -30,7 +29,7 @@ SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
3029
RUN install_packages ca-certificates curl procps zlib1g
3130
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
3231
COMPONENTS=( \
33-
"yq-4.45.1-5-linux-${OS_ARCH}-debian-12" \
32+
"yq-4.45.1-6-linux-${OS_ARCH}-debian-12" \
3433
"jre-21.0.6-10-1-linux-${OS_ARCH}-debian-12" \
3534
"spring-cloud-skipper-2.11.5-2-linux-${OS_ARCH}-debian-12" \
3635
) ; \

bitnami/spring-cloud-skipper/2/debian-12/prebuildfs/opt/bitnami/.bitnami_components.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"arch": "amd64",
1616
"distro": "debian-12",
1717
"type": "NAMI",
18-
"version": "4.45.1-5"
18+
"version": "4.45.1-6"
1919
}
2020
}

bitnami/spring-cloud-skipper/2/debian-12/prebuildfs/opt/bitnami/scripts/liblog.sh

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,14 @@ stderr_print() {
3939
# None
4040
#########################
4141
log() {
42-
stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}"
42+
local color_bool="${BITNAMI_COLOR:-true}"
43+
# comparison is performed without regard to the case of alphabetic characters
44+
shopt -s nocasematch
45+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]]; then
46+
stderr_print "${CYAN}${MODULE:-} ${MAGENTA}$(date "+%T.%2N ")${RESET}${*}"
47+
else
48+
stderr_print "${MODULE:-} $(date "+%T.%2N ")${*}"
49+
fi
4350
}
4451
########################
4552
# Log an 'info' message
@@ -49,7 +56,14 @@ log() {
4956
# None
5057
#########################
5158
info() {
52-
log "${GREEN}INFO ${RESET} ==> ${*}"
59+
local msg_color=""
60+
local color_bool="${BITNAMI_COLOR:-true}"
61+
# comparison is performed without regard to the case of alphabetic characters
62+
shopt -s nocasematch
63+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]];then
64+
msg_color="$GREEN"
65+
fi
66+
log "${msg_color}INFO ${RESET} ==> ${*}"
5367
}
5468
########################
5569
# Log message
@@ -59,7 +73,14 @@ info() {
5973
# None
6074
#########################
6175
warn() {
62-
log "${YELLOW}WARN ${RESET} ==> ${*}"
76+
local msg_color=""
77+
local color_bool="${BITNAMI_COLOR:-true}"
78+
# comparison is performed without regard to the case of alphabetic characters
79+
shopt -s nocasematch
80+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]];then
81+
msg_color="$YELLOW"
82+
fi
83+
log "${msg_color}WARN ${RESET} ==> ${*}"
6384
}
6485
########################
6586
# Log an 'error' message
@@ -69,7 +90,14 @@ warn() {
6990
# None
7091
#########################
7192
error() {
72-
log "${RED}ERROR${RESET} ==> ${*}"
93+
local msg_color=""
94+
local color_bool="${BITNAMI_COLOR:-true}"
95+
# comparison is performed without regard to the case of alphabetic characters
96+
shopt -s nocasematch
97+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]];then
98+
msg_color="$RED"
99+
fi
100+
log "${msg_color}ERROR${RESET} ==> ${*}"
73101
}
74102
########################
75103
# Log a 'debug' message
@@ -81,12 +109,16 @@ error() {
81109
# None
82110
#########################
83111
debug() {
84-
# 'is_boolean_yes' is defined in libvalidations.sh, but depends on this file so we cannot source it
85-
local bool="${BITNAMI_DEBUG:-false}"
112+
local msg_color=""
113+
local color_bool="${BITNAMI_COLOR:-true}"
86114
# comparison is performed without regard to the case of alphabetic characters
87115
shopt -s nocasematch
88-
if [[ "$bool" = 1 || "$bool" =~ ^(yes|true)$ ]]; then
89-
log "${MAGENTA}DEBUG${RESET} ==> ${*}"
116+
if [[ "$color_bool" = 1 || "$color_bool" =~ ^(yes|true)$ ]] ;then
117+
msg_color="$MAGENTA"
118+
fi
119+
local debug_bool="${BITNAMI_DEBUG:-false}"
120+
if [[ "$debug_bool" = 1 || "$debug_bool" =~ ^(yes|true)$ ]]; then
121+
log "${msg_color}DEBUG${RESET} ==> ${*}"
90122
fi
91123
}
92124

0 commit comments

Comments
 (0)