[bitnami/kubectl] Release 1.25.5-debian-11-r0 (#16467)

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
2022-12-10 02:53:07 +01:00
committed by GitHub
parent 186bb69fe2
commit 498a47ab1e
3 changed files with 7 additions and 7 deletions

View File

@@ -4,11 +4,11 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="1.25.4-debian-11-r8" \
org.opencontainers.image.ref.name="1.25.5-debian-11-r0" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/kubectl" \
org.opencontainers.image.title="kubectl" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="1.25.4"
org.opencontainers.image.version="1.25.5"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@@ -21,7 +21,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN install_packages ca-certificates curl git jq procps
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"kubectl-1.25.4-0-linux-${OS_ARCH}-debian-11" \
"kubectl-1.25.5-0-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@@ -38,7 +38,7 @@ RUN apt-get autoremove --purge -y curl && \
RUN chmod g+rwX /opt/bitnami
RUN mkdir /.kube && chmod g+rwX /.kube
ENV APP_VERSION="1.25.4" \
ENV APP_VERSION="1.25.5" \
BITNAMI_APP_NAME="kubectl" \
PATH="/opt/bitnami/kubectl/bin:$PATH"