Skip to content

Commit

Permalink
chore: wrap liquibase argument with double quote
Browse files Browse the repository at this point in the history
  • Loading branch information
david972 committed Oct 19, 2023
1 parent 12567f5 commit 2a6c741
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/app/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ dependencies:
version: 17.3.17
repository: https://charts.bitnami.com/bitnami
condition: redis.install
appVersion: v2.6.1
version: 2.6.1
appVersion: v2.6.2
version: 2.6.2
4 changes: 2 additions & 2 deletions charts/app/templates/liquibase/_liquibase_spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
set -e
cd /db
liquibase --url jdbc:postgresql://${db_host}:5432/${db_name} \
--username ${db_username} \
--password ${db_password} \
--username "${db_username}" \
--password "${db_password}" \
update
{{- with .Values.liquibase.resources }}
resources:
Expand Down

0 comments on commit 2a6c741

Please sign in to comment.