Update hardcoded Google Resource URLs

Kubernetes charts from google are
deprecated resources. Updated to helm
repositories for kubernetes charts per [0]

[0] https://helm.sh/blog/new-location-stable-incubator-charts/

Change-Id: I31f29d8576b3d7e8a5ac1d14faa26f0fd6ba77a1
This commit is contained in:
jh629g 2020-12-22 10:46:02 -06:00 committed by Jeremy Houser
parent 213596d71c
commit 63f0bc364e
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
args: args:
executable: /bin/bash executable: /bin/bash
- name: setting up helm client - 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: - block:
- name: checking if local helm server is running - name: checking if local helm server is running

View File

@ -85,5 +85,5 @@
http_proxy: "{{ proxy.http }}" http_proxy: "{{ proxy.http }}"
https_proxy: "{{ proxy.https }}" https_proxy: "{{ proxy.https }}"
no_proxy: "{{ proxy.noproxy }}" 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"
... ...