Image Overview: rabbitmq-cluster-operator

Overview: rabbitmq-cluster-operator Chainguard Image

RabbitMQ Cluster Kubernetes Operator

Download this Image

The image is available on cgr.dev:

docker pull cgr.dev/chainguard/rabbitmq-cluster-operator:latest

Usage

This image is a drop-in replacement for the upstream image. You can run it using kustomize with:

LATEST=$(curl -s "https://api.github.com/repos/rabbitmq/cluster-operator/releases/latest" | jq -r '.tag_name')

cat <<EOF > kustomization.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
  - "https://github.com/rabbitmq/cluster-operator/releases/download/${LATEST}/cluster-operator.yml"
patches:
  - patch: |
      - op: replace
        path: /spec/template/spec/containers/0/image
        value: cgr.dev/chainguard/rabbitmq-cluster-operator:latest
    target:
      version: v1
      kind: Deployment
      name: rabbitmq-cluster-operator
      namespace: rabbitmq-system
EOF

kubectl apply -f .

Last updated: 2024-04-11 12:38