mirror of
https://github.com/bitnami/containers.git
synced 2026-04-06 09:17:43 +08:00
[bitnami/kubectl] Release 1.25.2-debian-11-r0 (#7334)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -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.1-debian-11-r1" \
|
||||
org.opencontainers.image.ref.name="1.25.2-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.1"
|
||||
org.opencontainers.image.version="1.25.2"
|
||||
|
||||
ENV HOME="/" \
|
||||
OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
@@ -20,19 +20,19 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl git gzip jq procps tar
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f kubectl-1.25.1-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/kubectl-1.25.1-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/kubectl-1.25.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
if [ ! -f kubectl-1.25.2-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/kubectl-1.25.2-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/kubectl-1.25.2-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c kubectl-1.25.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf kubectl-1.25.1-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf kubectl-1.25.1-0-linux-${OS_ARCH}-debian-11.tar.gz kubectl-1.25.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
sha256sum -c kubectl-1.25.2-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf kubectl-1.25.2-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf kubectl-1.25.2-0-linux-${OS_ARCH}-debian-11.tar.gz kubectl-1.25.2-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
RUN apt-get update && apt-get upgrade -y && \
|
||||
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
||||
RUN chmod g+rwX /opt/bitnami
|
||||
RUN mkdir /.kube && chmod g+rwX /.kube
|
||||
|
||||
ENV APP_VERSION="1.25.1" \
|
||||
ENV APP_VERSION="1.25.2" \
|
||||
BITNAMI_APP_NAME="kubectl" \
|
||||
PATH="/opt/bitnami/kubectl/bin:$PATH"
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"kubectl": {
|
||||
"arch": "amd64",
|
||||
"digest": "b5c45af3341bcfcafa6f374a599143f5273f99b2348fcf45626761a36f31fd67",
|
||||
"digest": "8eb1a092369941f81c2bac01a1e249f5ae1b0c799858cc338fa1fde98c298f0b",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.25.1-0"
|
||||
"version": "1.25.2-0"
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
set -u
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
set -eu
|
||||
|
||||
n=0
|
||||
max=2
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
until [ $n -gt $max ]; do
|
||||
set +e
|
||||
(
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
rolling-tags:
|
||||
- "1.25"
|
||||
- "1.25-debian-11"
|
||||
- "1.25.1"
|
||||
- "1.25.2"
|
||||
- "latest"
|
||||
|
||||
@@ -28,7 +28,7 @@ $ docker run --name kubectl bitnami/kubectl:latest
|
||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`1.25`, `1.25-debian-11`, `1.25.1`, `1.25.1-debian-11-r1`, `latest` (1.25/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/kubectl/1.25/debian-11/Dockerfile)
|
||||
* [`1.25`, `1.25-debian-11`, `1.25.2`, `1.25.2-debian-11-r0`, `latest` (1.25/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/kubectl/1.25/debian-11/Dockerfile)
|
||||
* [`1.24`, `1.24-debian-11`, `1.24.6`, `1.24.6-debian-11-r0` (1.24/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/kubectl/1.24/debian-11/Dockerfile)
|
||||
* [`1.23`, `1.23-debian-11`, `1.23.12`, `1.23.12-debian-11-r0` (1.23/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/kubectl/1.23/debian-11/Dockerfile)
|
||||
* [`1.22`, `1.22-debian-11`, `1.22.14`, `1.22.14-debian-11-r1` (1.22/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/kubectl/1.22/debian-11/Dockerfile)
|
||||
|
||||
Reference in New Issue
Block a user