[bitnami/kubeapps-asset-syncer] Release 2.6.0-scratch-r1 (#9097)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
07239b3b22
commit
c9c61c37db
|
|
@ -11,13 +11,18 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|||
# Install required system packages and dependencies
|
||||
RUN install_packages ca-certificates curl
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
if [ ! -f kubeapps-asset-syncer-2.5.1-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/kubeapps-asset-syncer-2.5.1-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/kubeapps-asset-syncer-2.5.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c kubeapps-asset-syncer-2.5.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf kubeapps-asset-syncer-2.5.1-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf kubeapps-asset-syncer-2.5.1-0-linux-${OS_ARCH}-debian-11.tar.gz kubeapps-asset-syncer-2.5.1-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
COMPONENTS=( \
|
||||
"kubeapps-asset-syncer-2.6.0-0-linux-${OS_ARCH}-debian-11" \
|
||||
) && \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
|
||||
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \
|
||||
fi && \
|
||||
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
|
||||
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf "${COMPONENT}.tar.gz{,sha256}" ; \
|
||||
done
|
||||
|
||||
######
|
||||
|
||||
|
|
@ -29,11 +34,11 @@ ENV OS_ARCH="${TARGETARCH:-amd64}"
|
|||
|
||||
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||
org.opencontainers.image.ref.name="2.5.1-scratch-r2" \
|
||||
org.opencontainers.image.ref.name="2.6.0-scratch-r1" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/kubeapps-asset-syncer" \
|
||||
org.opencontainers.image.title="kubeapps-asset-syncer" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="2.5.1"
|
||||
org.opencontainers.image.version="2.6.0"
|
||||
|
||||
COPY prebuildfs /
|
||||
COPY rootfs /
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"kubeapps-asset-syncer": {
|
||||
"arch": "amd64",
|
||||
"digest": "77aed9dcc38f1d82c127056c8183dbe961617091dee051cdfa9c303d73613d08",
|
||||
"digest": "640279dcae014de169d28b6ba761a2c9573bd7a1f497fbc23c2f007a586cbbb4",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2.5.1-0"
|
||||
"version": "2.6.0-0"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
rolling-tags:
|
||||
- "2"
|
||||
- "2-scratch"
|
||||
- "2.5.1"
|
||||
- "2.6.0"
|
||||
- "latest"
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
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/).
|
||||
|
||||
|
||||
* [`2`, `2-scratch`, `2.5.1`, `2.5.1-scratch-r2`, `latest` (2/scratch/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/kubeapps-asset-syncer/2/scratch/Dockerfile)
|
||||
* [`2`, `2-scratch`, `2.6.0`, `2.6.0-scratch-r1`, `latest` (2/scratch/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/kubeapps-asset-syncer/2/scratch/Dockerfile)
|
||||
|
||||
## Configuration
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue