Reputation: 8704
I have a deployment script that is fetching rabbitmq from kubernetes-charts
reports
- name: rabbitmq
version: 0.6.17
repository: https://kubernetes-charts.storage.googleapis.com/
It seems like this is not working from yesterday. Does someone which repository url I can use instead?
Upvotes: 0
Views: 635
Reputation: 5521
The official chart repository is deprecated. For the specific Helm chart, you should check https://artifacthub.io/.
In the case of rabbitmq
, you can find it here. And here are the Helm commands.
$ helm repo add bitnami https://charts.bitnami.com/bitnami
$ helm install my-release bitnami/rabbitmq
Upvotes: 1