Skip to content

Commit

Permalink
Dbp 714 change dev pipeline postgres user from spshdeveloper to name …
Browse files Browse the repository at this point in the history
…of database (#397)

* DBP-714-Update Database Username to Match Database Name

* DBP-714-Create a new release

* DBP-714-Update Database Username to Match Database Name

* DBP-714-Update Database Username to Match Database Name
  • Loading branch information
sahassou authored Apr 5, 2024
1 parent 8c75994 commit bf320af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ jobs:

branch_meta:
if: ${{ github.event_name == 'push' && !startsWith(github.ref_name,'dependabot/') }}
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/get-branch-meta.yml@2
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/get-branch-meta.yml@3

create_branch_identifier:
if: ${{ github.event_name == 'push' && !startsWith(github.ref_name,'dependabot/') }}
needs:
- branch_meta
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/deploy-branch-to-namespace.yml@2
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/deploy-branch-to-namespace.yml@3
with:
branch: ${{ needs.branch_meta.outputs.branch }}

Expand All @@ -133,7 +133,7 @@ jobs:
- create_branch_identifier
- release_helm
- build_image_on_push
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/deploy.yml@2
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/deploy.yml@3
with:
dbildungs_iam_server_branch: ${{ needs.branch_meta.outputs.ticket }}
schulportal_client_branch: ${{ needs.branch_meta.outputs.ticket }}
Expand All @@ -143,15 +143,15 @@ jobs:

create_branch_identifier_for_deletion:
if: ${{ github.event_name == 'delete' && github.event.ref_type == 'branch' }}
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/deploy-branch-to-namespace.yml@2
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/deploy-branch-to-namespace.yml@3
with:
branch: ${{ github.event.ref }}

delete_namespace:
if: ${{ github.event_name == 'delete' && github.event.ref_type == 'branch'}}
needs:
- create_branch_identifier_for_deletion
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/delete-namespace.yml@2
uses: dBildungsplattform/spsh-app-deploy/.github/workflows/delete-namespace.yml@3
with:
namespace: ${{ needs.create_branch_identifier_for_deletion.outputs.namespace_from_branch }}
secrets:
Expand Down
4 changes: 2 additions & 2 deletions charts/dbildungs-iam-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ restartPolicy: Always
environment: prod

database:
name: ""
name: "dbildungs_iam_server"
host: ""
password: ""
username: ""
username: "dbildungs_iam_server"

auth:
# existingSecret: Refers to a secret already present in the cluster, which is required.
Expand Down

0 comments on commit bf320af

Please sign in to comment.