[bitnami/rabbitmq-cluster-operator] Release 2.0.0-scratch-r4 (#10772)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
dbf40378a4
commit
6ec6c560f8
|
|
@ -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 rabbitmq-cluster-operator-2.0.0-0-linux-${OS_ARCH}-debian-11.tar.gz ]; then \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/rabbitmq-cluster-operator-2.0.0-0-linux-${OS_ARCH}-debian-11.tar.gz -O ; \
|
||||
curl -SsLf https://downloads.bitnami.com/files/stacksmith/rabbitmq-cluster-operator-2.0.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 -O ; \
|
||||
fi && \
|
||||
sha256sum -c rabbitmq-cluster-operator-2.0.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256 && \
|
||||
tar -zxf rabbitmq-cluster-operator-2.0.0-0-linux-${OS_ARCH}-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||
rm -rf rabbitmq-cluster-operator-2.0.0-0-linux-${OS_ARCH}-debian-11.tar.gz rabbitmq-cluster-operator-2.0.0-0-linux-${OS_ARCH}-debian-11.tar.gz.sha256
|
||||
COMPONENTS=( \
|
||||
"rabbitmq-cluster-operator-2.0.0-1-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,7 +34,7 @@ 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.0.0-scratch-r3" \
|
||||
org.opencontainers.image.ref.name="2.0.0-scratch-r4" \
|
||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/rabbitmq-cluster-operator" \
|
||||
org.opencontainers.image.title="rabbitmq-cluster-operator" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"rabbitmq-cluster-operator": {
|
||||
"arch": "amd64",
|
||||
"digest": "53132060813972e3865323b5dfd9b0f597020e0f067e95e26248d7d184715c00",
|
||||
"digest": "b628864fd01bdacd1f5f3c702f06941efbdb08643375e73bcf0f2f1b58eb01f7",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "2.0.0-0"
|
||||
"version": "2.0.0-1"
|
||||
}
|
||||
}
|
||||
|
|
@ -27,9 +27,7 @@ $ docker run --name rabbitmq-cluster-operator bitnami/rabbitmq-cluster-operator:
|
|||
|
||||
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.0.0`, `2.0.0-scratch-r3`, `latest` (2/scratch/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/rabbitmq-cluster-operator/2/scratch/Dockerfile)
|
||||
- [`1`, `1-scratch`, `1.14.0`, `1.14.0-scratch-r8` (1/scratch/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/rabbitmq-cluster-operator/1/scratch/Dockerfile)
|
||||
You can see the equivalence between the different tags by taking a look at the `tags-info.yaml` file present in the branch folder, i.e `bitnami/ASSET/BRANCH/DISTRO/tags-info.yaml`.
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).
|
||||
|
||||
|
|
@ -73,7 +71,7 @@ Check the [official RabbitMQ Cluster Operator documentation](https://github.com/
|
|||
|
||||
## Contributing
|
||||
|
||||
We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues), or submit a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.
|
||||
We'd love for you to contribute to this container. You can request new features by creating an [issue](https://github.com/bitnami/containers/issues) or submitting a [pull request](https://github.com/bitnami/containers/pulls) with your contribution.
|
||||
|
||||
## Issues
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue