From 628582f88be46b4d028d301ef2194331f357a77a Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Tue, 27 Feb 2024 21:46:56 +0800 Subject: [PATCH] .github/workflows/sync-charts.yaml: add bitnami/keycloak --- .github/workflows/sync-charts.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-charts.yaml b/.github/workflows/sync-charts.yaml index 4c305e3..da6b0ce 100644 --- a/.github/workflows/sync-charts.yaml +++ b/.github/workflows/sync-charts.yaml @@ -80,7 +80,7 @@ jobs: helm fetch openldap/openldap-stack-ha --version 4.1.1 --untar cd openldap-stack-ha && helm cm-push -u admin -p "${{ secrets.HELM_REPO_PASSWORD }}" --force ./ sync - sync-databases-charts: + sync-charts-from-bitnami-repo: runs-on: ubuntu-latest steps: @@ -99,6 +99,14 @@ jobs: helm repo add bitnami https://charts.bitnami.com/bitnami helm repo up + - name: Fetch & push keycloak charts + shell: bash + run: | + cd ${GITHUB_WORKSPACE}/ + rm -rvf keycloak + helm fetch bitnami/keycloak --version 18.4.0 --untar + cd keycloak && helm cm-push -u admin -p "${{ secrets.HELM_REPO_PASSWORD }}" --force ./ sync + - name: Fetch & push redis charts shell: bash run: |