Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Central-IDP): increase Central-IDP version to 4.0.0
Browse files Browse the repository at this point in the history
nicoprow committed Dec 5, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent a043bdc commit 5e43562
Showing 13 changed files with 2,990 additions and 2,818 deletions.
50 changes: 47 additions & 3 deletions .github/workflows/app-test-charts.yaml
Original file line number Diff line number Diff line change
@@ -178,14 +178,58 @@ jobs:
EOF
echo "cat .chart-testing-config.yaml"
cat .chart-testing-config.yaml
- name: Run chart-testing (install)
run: ct install --charts charts/bpdm --config .chart-testing-config.yaml
- name: Create Test Upgrade Values
run: |
mkdir charts/bpdm/ci
cat <<EOF > charts/bpdm/ci/test-values.yaml
bpdm-pool:
image:
registry: kind-registry:5000
repository: bpdm-pool
tag: test
bpdm-gate:
image:
registry: kind-registry:5000
repository: bpdm-gate
tag: test
bpdm-orchestrator:
image:
registry: kind-registry:5000
repository: bpdm-orchestrator
tag: test
bpdm-cleaning-service-dummy:
image:
registry: kind-registry:5000
repository: bpdm-cleaning-service-dummy
tag: test
centralidp:
keycloak:
replicaCount: 1
postgresql:
auth:
# -- Non-root user password.
password: password
# -- Root user password.
postgresPassword: password
architecture: standalone
secrets:
postgresql:
auth:
existingSecret:
postgrespassword: password
password: password
realmSeeding:
enabled: false
EOF
echo "cat charts/bpdm/ci/test-upgrade-values.yaml"
cat charts/bpdm/ci/test-upgrade-values.yaml
- name: Run helm upgrade
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add tractusx-dev https://eclipse-tractusx.github.io/charts/dev
helm install bpdm-test tractusx-dev/bpdm ${{ github.event.inputs.upgrade_from && '--version github.event.inputs.upgrade_from' || '' }}
helm dependency update charts/bpdm
helm upgrade --set centralidp.keycloak.postgresql.auth.postgresPassword=test --set centralidp.keycloak.postgresql.auth.password=test --set centralidp.keycloak.postgresql.auth.replicationPassword=test bpdm-test charts/bpdm
helm upgrade -f charts/bpdm/ci/test-upgrade-values.yaml bpdm-test charts/bpdm
Loading

0 comments on commit 5e43562

Please sign in to comment.