mirror of
https://github.com/bitnami/containers.git
synced 2026-02-10 21:27:26 +08:00
[bitnami/minio-operator] Release 7.1.1-debian-12-r2 (#82043)
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
@@ -15,7 +15,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/ || exit 1 ; \
|
||||
COMPONENTS=( \
|
||||
"minio-operator-7.1.1-1-linux-${OS_ARCH}-debian-12" \
|
||||
"minio-operator-7.1.1-2-linux-${OS_ARCH}-debian-12" \
|
||||
) ; \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
@@ -26,6 +26,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
|
||||
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner ; \
|
||||
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
|
||||
done
|
||||
RUN uninstall_packages curl
|
||||
|
||||
######
|
||||
|
||||
@@ -38,9 +39,9 @@ ENV OS_ARCH="${TARGETARCH:-amd64}"
|
||||
|
||||
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
|
||||
org.opencontainers.image.base.name="scratch" \
|
||||
org.opencontainers.image.created="2025-05-07T15:35:01Z" \
|
||||
org.opencontainers.image.created="2025-06-06T03:03:50Z" \
|
||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||
org.opencontainers.image.ref.name="7.1.1-debian-12-r1" \
|
||||
org.opencontainers.image.ref.name="7.1.1-debian-12-r2" \
|
||||
org.opencontainers.image.title="minio-operator" \
|
||||
org.opencontainers.image.vendor="Broadcom, Inc." \
|
||||
org.opencontainers.image.version="7.1.1"
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
"arch": "amd64",
|
||||
"distro": "debian-12",
|
||||
"type": "NAMI",
|
||||
"version": "7.1.1-1"
|
||||
"version": "7.1.1-2"
|
||||
}
|
||||
}
|
||||
26
bitnami/minio-operator/7/debian-12/prebuildfs/usr/sbin/uninstall_packages
Executable file
26
bitnami/minio-operator/7/debian-12/prebuildfs/usr/sbin/uninstall_packages
Executable file
@@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
# Copyright Broadcom, Inc. All Rights Reserved.
|
||||
# SPDX-License-Identifier: APACHE-2.0
|
||||
set -eu
|
||||
|
||||
n=0
|
||||
max=2
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
until [ $n -gt $max ]; do
|
||||
set +e
|
||||
(
|
||||
apt-get autoremove --purge -y "$@"
|
||||
)
|
||||
CODE=$?
|
||||
set -e
|
||||
if [ $CODE -eq 0 ]; then
|
||||
break
|
||||
fi
|
||||
if [ $n -eq $max ]; then
|
||||
exit $CODE
|
||||
fi
|
||||
echo "apt failed, retrying"
|
||||
n=$(($n + 1))
|
||||
done
|
||||
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
||||
@@ -1,10 +1,10 @@
|
||||
# Bitnami Object Storage based on MinIO® Operator
|
||||
# Storage based on MinIO® Operator
|
||||
|
||||
## What is Bitnami Object Storage based on MinIO® Operator?
|
||||
## What is Storage based on MinIO® Operator?
|
||||
|
||||
> MinIO® Operator is a Kubernetes-native tool for deploying and managing high-performance, S3-compatible MinIO® object storage across hybrid cloud infrastructures.
|
||||
|
||||
[Overview of Bitnami Object Storage based on MinIO® Operator](https://min.io/)
|
||||
[Overview of Storage based on MinIO® Operator](https://min.io/)
|
||||
Trademarks: This software listing is packaged by Bitnami. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
|
||||
|
||||
## TL;DR
|
||||
@@ -22,7 +22,7 @@ docker run --name minio-operator bitnami/minio-operator:latest
|
||||
* All Bitnami images available in Docker Hub are signed with [Notation](https://notaryproject.dev/). [Check this post](https://blog.bitnami.com/2024/03/bitnami-packaged-containers-and-helm.html) to know how to verify the integrity of the images.
|
||||
* Bitnami container images are released on a regular basis with the latest distribution packages available.
|
||||
|
||||
Looking to use Bitnami Object Storage based on MinIO® Operator in production? Try [VMware Tanzu Application Catalog](https://bitnami.com/enterprise), the commercial edition of the Bitnami catalog.
|
||||
Looking to use Storage based on MinIO® Operator in production? Try [VMware Tanzu Application Catalog](https://bitnami.com/enterprise), the commercial edition of the Bitnami catalog.
|
||||
|
||||
## Only the latest stable branch maintained in the free Bitnami catalog
|
||||
|
||||
@@ -40,7 +40,7 @@ Subscribe to project updates by watching the [bitnami/containers GitHub repo](ht
|
||||
|
||||
## Get this image
|
||||
|
||||
The recommended way to get the Bitnami Bitnami Object Storage based on MinIO® Operator Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/minio-operator).
|
||||
The recommended way to get the Bitnami Storage based on MinIO® Operator Docker Image is to pull the prebuilt image from the [Docker Hub Registry](https://hub.docker.com/r/bitnami/minio-operator).
|
||||
|
||||
```console
|
||||
docker pull bitnami/minio-operator:latest
|
||||
@@ -74,7 +74,7 @@ To run commands inside this container you can use `docker run`, for example to e
|
||||
docker run --rm --name minio-operator bitnami/minio-operator:latest -- --help
|
||||
```
|
||||
|
||||
Check the [official Bitnami Object Storage based on MinIO® Operator documentation](https://min.io/) for more information.
|
||||
Check the [official Storage based on MinIO® Operator documentation](https://min.io/) for more information.
|
||||
|
||||
## Contributing
|
||||
|
||||
|
||||
Reference in New Issue
Block a user