Automating Helm using Ansible
www.ansible.com › blog › automating-helm-using-ansibleNov 04, 2020 · In order to install the Helm Package, you need to have the Helm repository added in your Kubernetes cluster. Let us now add a Helm Repository using helm_repository module: --- - hosts: localhost vars: helm_chart_url: "https://charts.bitnami.com/bitnami" tasks: - name: Add helm repo kubernetes.core.helm_repository: name: bitnami repo_url: "{{ helm_chart_url }}"