Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DBP-799-openldap-image-helm-chart-fix #38

Merged
merged 1 commit into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/deploy-to-dev-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ on:
description: "dbildungs_iam_keycloak Branch. Has to be main or in format <project>-<ticketnumber>, e.g. spsh-130"
default: main
type: string
dbildungs_iam_ldap_branch:
required: true
description: "dbildungs_iam_ldap Branch. Has to be main or in format <project>-<ticketnumber>, e.g. spsh-130"
default: main
type: string
dbseeding:
required: true
description: "DB-Seeding (Default: chart_value)"
Expand Down Expand Up @@ -61,6 +66,7 @@ jobs:
dbildungs_iam_server_branch: ${{ github.event.inputs.dbildungs_iam_server_branch }}
schulportal_client_branch: ${{ github.event.inputs.dbildungs_iam_client_branch }}
dbildungs_iam_keycloak_branch: ${{ github.event.inputs.dbildungs_iam_keycloak_branch }}
dbildungs_iam_ldap_branch: ${{ github.event.inputs.dbildungs_iam_ldap_branch }}
dbseeding: ${{ github.event.inputs.dbseeding }}
namespace: ${{ needs.create_branch_identifier.outputs.namespace_from_branch }}
user_name: spsh-bot
Expand Down
21 changes: 11 additions & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,16 +228,6 @@ jobs:
--set auth.existingSecret="psql-config-secret" \
--set database.name=${{ needs.create_dbildungs_iam_keycloak_db_name.outputs.keycloak_db_name }}

# even though the initTLSSecret.secret value is set it has no effect if the initTLSSecret in not enabled (default: false) - only necessary for External IP
- name: Deploy dbildungs_iam_ldap Helm chart
run: |
helm upgrade --install \
dbildungs-iam-ldap \
dbildungs-iam-ldap \
--namespace ${{ inputs.namespace }} \
--set global.existingSecret="dbildungs-iam-ldap" \
--set initTLSSecret.secret="dbildungs-iam-ldap-tls" \
--wait

- name: Create Database for dbildungs-iam-server
run: |
Expand Down Expand Up @@ -269,6 +259,17 @@ jobs:
--set database.username=spshdeveloper \
--wait

# even though the initTLSSecret.secret value is set it has no effect if the initTLSSecret in not enabled (default: false) - only necessary for External IP
- name: Deploy dbildungs_iam_ldap Helm chart
run: |
helm upgrade --install \
dbildungs-iam-ldap \
dbildungs-iam-ldap \
--namespace ${{ inputs.namespace }} \
--set global.existingSecret="dbildungs-iam-ldap" \
--set initTLSSecret.secret="dbildungs-iam-ldap-tls" \
--wait

- name: Deploy schulportal_client Helm chart
run: |
helm upgrade --install \
Expand Down
Loading