This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v1-10-stable in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 868ff46caffd8df26da8c4edb53e83d802b3848b Author: Ash Berlin-Taylor <[email protected]> AuthorDate: Fri Nov 6 16:05:18 2020 +0000 Update to new helm stable repo (#12137) Switch out deprecated helm repo for new stable repo. - https://www.cncf.io/blog/2020/11/05/helm-chart-repository-deprecation-update/ - https://helm.sh/docs/faq/#i-am-getting-a-warning-about-unable-to-get-an-update-from-the-stable-chart-repository (cherry picked from commit 128c9918b5f79cb46a563b77e803c29548c4319c) --- chart/README.md | 2 +- chart/requirements.lock | 2 +- scripts/ci/libraries/_kind.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chart/README.md b/chart/README.md index e7ef973..7d23ce3 100644 --- a/chart/README.md +++ b/chart/README.md @@ -37,7 +37,7 @@ cluster using the [Helm](https://helm.sh) package manager. To install this repository from source (using helm 3) ```bash kubectl create namespace airflow -helm repo add stable https://kubernetes-charts.storage.googleapis.com +helm repo add stable https://charts.helm.sh/stable/ helm dep update helm install airflow . --namespace airflow ``` diff --git a/chart/requirements.lock b/chart/requirements.lock index f86e696..dac8661 100644 --- a/chart/requirements.lock +++ b/chart/requirements.lock @@ -1,6 +1,6 @@ dependencies: - name: postgresql - repository: https://kubernetes-charts.storage.googleapis.com + repository: https://charts.helm.sh/stable/ version: 6.3.12 digest: sha256:58d88cf56e78b2380091e9e16cc6ccf58b88b3abe4a1886dd47cd9faef5309af generated: "2020-06-21T19:11:53.498134738+02:00" diff --git a/scripts/ci/libraries/_kind.sh b/scripts/ci/libraries/_kind.sh index 889212f..c3e29cc 100644 --- a/scripts/ci/libraries/_kind.sh +++ b/scripts/ci/libraries/_kind.sh @@ -296,7 +296,7 @@ function deploy_airflow_with_helm() { verbose_kubectl create namespace "${HELM_AIRFLOW_NAMESPACE}" verbose_kubectl create namespace "test-namespace" pushd "${AIRFLOW_SOURCES}/chart" || exit 1 - verbose_helm repo add stable https://kubernetes-charts.storage.googleapis.com + verbose_helm repo add stable https://charts.helm.sh/stable/ verbose_helm dep update verbose_helm install airflow . --namespace "${HELM_AIRFLOW_NAMESPACE}" \ --set "defaultAirflowRepository=${DOCKERHUB_USER}/${DOCKERHUB_REPO}" \
