[bitnami/sealed-secrets-controller] Release 0.24.5-debian-11-r1 (#54725)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2024-01-12 15:54:12 +01:00 committed by GitHub
parent ad376a4cbc
commit 093e201067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 19 deletions

View File

@ -14,7 +14,7 @@ SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
RUN install_packages ca-certificates curl
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ ; \
COMPONENTS=( \
"sealed-secrets-0.24.5-0-linux-${OS_ARCH}-debian-11" \
"sealed-secrets-0.24.5-2-linux-${OS_ARCH}-debian-11" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@ -36,10 +36,10 @@ ENV OS_ARCH="${TARGETARCH:-amd64}"
LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \
org.opencontainers.image.base.name="scratch" \
org.opencontainers.image.created="2023-12-15T13:40:08Z" \
org.opencontainers.image.created="2024-01-12T14:33:13Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="0.24.5-debian-11-r0" \
org.opencontainers.image.ref.name="0.24.5-debian-11-r1" \
org.opencontainers.image.title="sealed-secrets" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="0.24.5"
@ -47,7 +47,6 @@ LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf780258
COPY prebuildfs /
COPY rootfs /
COPY --from=builder /opt/bitnami/sealed-secrets/bin/controller /controller
COPY --from=builder /opt/bitnami/sealed-secrets/bin/kubeseal /kubeseal
ENV APP_VERSION="0.24.5" \
BITNAMI_APP_NAME="sealed-secrets"

View File

@ -1,7 +0,0 @@
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
version: '2'
services:
myapp:
image: docker.io/bitnami/sealed-secrets-controller:0

View File

@ -3,6 +3,6 @@
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "0.24.5-0"
"version": "0.24.5-2"
}
}

View File

@ -10,7 +10,7 @@ fi
script=$1
exit_code="${2:-96}"
fail_if_not_present="${3:-y}"
fail_if_not_present="${3:-n}"
if test -f "$script"; then
sh $script

View File

@ -9,7 +9,7 @@
## TL;DR
```console
docker run --name sealed-secrets-controller bitnami/sealed-secrets-controller:latest
docker run --name sealed-secrets bitnami/sealed-secrets:latest
```
## Why use Bitnami Images?
@ -33,16 +33,16 @@ Subscribe to project updates by watching the [bitnami/containers GitHub repo](ht
## Get this image
The recommended way to get the Bitnami sealed-secrets-controller Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/sealed-secrets-controller).
The recommended way to get the Bitnami sealed-secrets Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/sealed-secrets).
```console
docker pull bitnami/sealed-secrets-controller:latest
docker pull bitnami/sealed-secrets:latest
```
To use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/bitnami/sealed-secrets-controller/tags/) in the Docker Hub Registry.
To use a specific version, you can pull a versioned tag. You can view the [list of available versions](https://hub.docker.com/r/bitnami/sealed-secrets/tags/) in the Docker Hub Registry.
```console
docker pull bitnami/sealed-secrets-controller:[TAG]
docker pull bitnami/sealed-secrets:[TAG]
```
If you wish, you can also build the image yourself by cloning the repository, changing to the directory containing the Dockerfile and executing the `docker build` command. Remember to replace the `APP`, `VERSION` and `OPERATING-SYSTEM` path placeholders in the example command below with the correct values.
@ -60,7 +60,7 @@ docker build -t bitnami/APP:latest .
To run commands inside this container you can use `docker run`, for example to execute `kubeseal --version` you can follow the example below:
```console
docker run --rm --name sealed-secrets-controller bitnami/sealed-secrets-controller:latest -- kubeseal --version
docker run --rm --name sealed-secrets bitnami/sealed-secrets:latest -- kubeseal --version
```
## Contributing