diff --git a/roles/build-helm-packages/tasks/setup-helm-serve.yaml b/roles/build-helm-packages/tasks/setup-helm-serve.yaml index 6592fd205..bf024c5ea 100644 --- a/roles/build-helm-packages/tasks/setup-helm-serve.yaml +++ b/roles/build-helm-packages/tasks/setup-helm-serve.yaml @@ -34,7 +34,7 @@ args: executable: /bin/bash - name: setting up helm client - command: helm init --client-only --skip-refresh + command: helm init --client-only --skip-refresh --stable-repo-url "https://charts.helm.sh/stable" - block: - name: checking if local helm server is running diff --git a/tools/images/kubeadm-aio/assets/opt/playbooks/roles/deploy-kubeadm-master/tasks/helm-deploy.yaml b/tools/images/kubeadm-aio/assets/opt/playbooks/roles/deploy-kubeadm-master/tasks/helm-deploy.yaml index e9343132e..e784bd17f 100644 --- a/tools/images/kubeadm-aio/assets/opt/playbooks/roles/deploy-kubeadm-master/tasks/helm-deploy.yaml +++ b/tools/images/kubeadm-aio/assets/opt/playbooks/roles/deploy-kubeadm-master/tasks/helm-deploy.yaml @@ -85,5 +85,5 @@ http_proxy: "{{ proxy.http }}" https_proxy: "{{ proxy.https }}" no_proxy: "{{ proxy.noproxy }}" - command: helm init --client-only --skip-refresh + command: helm init --client-only --skip-refresh --stable-repo-url "https://charts.helm.sh/stable" ...