Search code examples
kubernetes-helm

Problem with fetching helm chart from kubernetes-charts


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?


Solution

  • 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