Skip to content

Instantly share code, notes, and snippets.

@jessehu
Last active October 16, 2021 03:49
Show Gist options
  • Save jessehu/04cb08aa8e1bfcff5c068a0a5c9d5050 to your computer and use it in GitHub Desktop.
Save jessehu/04cb08aa8e1bfcff5c068a0a5c9d5050 to your computer and use it in GitHub Desktop.
Install RabbitMQ Helm Chart
# Homepage: https://artifacthub.io/packages/helm/bitnami/rabbitmq
# Note: Specify `--set clustering.enabled=false` in Minikube with a single k8s node.
helm repo add bitnami https://charts.bitnami.com/bitnami
helm install -n rabbitmq-system --create-namespace rabbitmq bitnami/rabbitmq \
--set clustering.enabled=false \
--set auth.username=user --set auth.password=pass \
--set persistence.size=1Gi \
--wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment