diff --git a/.gitea/workflows/render-manifests.yaml b/.gitea/workflows/render-manifests.yaml index 5daac41d5..0ebf37b59 100644 --- a/.gitea/workflows/render-manifests.yaml +++ b/.gitea/workflows/render-manifests.yaml @@ -44,13 +44,15 @@ jobs: - name: Add Repositories run: | - echo ">> Adding repositories for chart dependencies ..." - for chart_path in ${MAIN_DIR}/clusters/$cluster/helm/*; do - helm dependency list --max-col-width 120 $chart_path 2> /dev/null \ - | tail +2 | head -n 1 \ - | tee repo_added \ - | awk '{ print "helm repo add " $1 " " $3 }' \ - | sh + for cluster in ${CLUSTERS}; do + echo ">> Adding repositories for chart dependencies of cluster $cluster ..." + for chart_path in ${MAIN_DIR}/clusters/$cluster/helm/*; do + helm dependency list --max-col-width 120 $chart_path 2> /dev/null \ + | tail +2 | head -n 1 \ + | tee -a repo_added \ + | awk '{ print "helm repo add " $1 " " $3 }' \ + | sh + done done echo ">> Added following repos:" diff --git a/clusters/cl01tl/helm/actual/repo_added b/clusters/cl01tl/helm/actual/repo_added deleted file mode 100644 index fc25ebcc2..000000000 --- a/clusters/cl01tl/helm/actual/repo_added +++ /dev/null @@ -1 +0,0 @@ -app-template 4.4.0 https://bjw-s-labs.github.io/helm-charts/ ok