Last active
October 16, 2021 03:49
-
-
Save jessehu/04cb08aa8e1bfcff5c068a0a5c9d5050 to your computer and use it in GitHub Desktop.
Install RabbitMQ Helm Chart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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