Skip to content

Commit

Permalink
Cnde 2182: Adding a separate connection creds for the SRTE database (#…
Browse files Browse the repository at this point in the history
…748)

* CNDE-2181: Create a database connection for the SRTE database and update the deployment.yaml

* Adding a separate connection creds for the SRTE database
  • Loading branch information
alog-enquizit authored Jan 23, 2025
1 parent 2fe9311 commit 162bd9a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/liquibase/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
- "-c"
- |
echo "Executing changelog in DB : {{ .Values.jdbc.srte_db_url }}"
liquibase --changelog-file="{{ .Values.changelog.srte }}" --searchPath="./" --url="{{ .Values.jdbc.srte_db_url }}" --username={{ .Values.jdbc.username }} --password={{ .Values.jdbc.password }} update
liquibase --changelog-file="{{ .Values.changelog.srte }}" --searchPath="./" --url="{{ .Values.jdbc.srte_db_url }}" --username={{ .Values.jdbc.srte_username }} --password={{ .Values.jdbc.srte_password }} update
echo "{{ .Values.changelog.srte }} scripts : execution success!"
echo "Executing changelog in DB : {{ .Values.jdbc.data_ingest_url }}"
Expand Down
2 changes: 2 additions & 0 deletions charts/liquibase/values-dts1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ jdbc:
msgoute_url: "jdbc:sqlserver://EXAMPLE_DB_ENDPOINT:1433;databaseName=nbs_msgoute;integratedSecurity=false;encrypt=true;trustServerCertificate=true"
username: ""
password: ""
srte_username: ""
srte_password: ""

odse:
dbname: "nbs_odse"
Expand Down
2 changes: 2 additions & 0 deletions charts/liquibase/values-feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ jdbc:
msgoute_url: "jdbc:sqlserver://EXAMPLE_DB_ENDPOINT:1433;databaseName=nbs_msgoute;integratedSecurity=false;encrypt=true;trustServerCertificate=true"
username: ""
password: ""
srte_username: ""
srte_password: ""

odse:
dbname: "NBS_ODSE"
Expand Down
2 changes: 2 additions & 0 deletions charts/liquibase/values-int1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ jdbc:
msgoute_url: "jdbc:sqlserver://EXAMPLE_DB_ENDPOINT:1433;databaseName=nbs_msgoute;integratedSecurity=false;encrypt=true;trustServerCertificate=true"
username: ""
password: ""
srte_username: ""
srte_password: ""

odse:
dbname: "NBS_ODSE"
Expand Down
2 changes: 2 additions & 0 deletions charts/liquibase/values-test1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ jdbc:
msgoute_url: "jdbc:sqlserver://EXAMPLE_DB_ENDPOINT:1433;databaseName=nbs_msgoute;integratedSecurity=false;encrypt=true;trustServerCertificate=true"
username: ""
password: ""
srte_username: ""
srte_password: ""

odse:
dbname: "NBS_ODSE"
Expand Down
2 changes: 2 additions & 0 deletions charts/liquibase/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ jdbc:
msgoute_url: "jdbc:sqlserver://EXAMPLE_DB_ENDPOINT:1433;databaseName=nbs_msgoute;integratedSecurity=false;encrypt=true;trustServerCertificate=true"
username: "EXAMPLE_DB_USER"
password: "EXAMPLE_DB_USER_PASSWORD"
srte_username: ""
srte_password: ""

odse:
dbname: "NBS_ODSE"
Expand Down

0 comments on commit 162bd9a

Please sign in to comment.