.github/workflows/sync-charts.yaml: add openldap charts

This commit is contained in:
Haitao Pan 2024-02-24 16:38:46 +08:00
parent 09679a60cd
commit b4e8e23001

View File

@ -64,7 +64,7 @@ jobs:
helm repo add openldap https://jp-gouin.github.io/helm-openldap/
helm repo up
- name: Fetch & push openldap-stack charts
- name: Fetch & push datadog charts
shell: bash
run: |
cd ${GITHUB_WORKSPACE}/
@ -72,6 +72,14 @@ jobs:
helm fetch datadog/datadog --version 3.25.5 --untar
cd datadog && helm cm-push -u admin -p "${{ secrets.HELM_REPO_PASSWORD }}" --force ./ sync
- name: Fetch & push openldap-stack charts
shell: bash
run: |
cd ${GITHUB_WORKSPACE}/
rm -rvf openldap-stack-ha
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:
runs-on: ubuntu-latest