File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed
Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 1+ dependencies:
2+ - name: postgresql
3+ repository: https://charts.bitnami.com/bitnami
4+ version: 11.6.2
5+ digest: sha256:f2b516da25d0a7992c8e720991f2f788b031f9e72607887fc1a1f3b85ecb7ca4
6+ generated: "2025-10-20T18:08:04.249487+03:00"
Original file line number Diff line number Diff line change 1515 labels :
1616 component : {{ .Values.hlmbackend.name }}
1717 spec :
18+ initContainers :
19+ - name : create-schema
20+ image : postgres:16-alpine
21+ command :
22+ - sh
23+ - -c
24+ - |
25+ PGPASSWORD={{ .Values.postgresql.endpoint.password }} psql -h {{ .Values.postgresql.endpoint.address }} -U {{ .Values.postgresql.endpoint.user }} -d {{ .Values.postgresql.endpoint.dbName }} -c "CREATE SCHEMA IF NOT EXISTS {{ .Values.postgresql.endpoint.schema }};" || true
1826 containers :
1927 - name : hlm-backend
2028 image : " {{ .Values.hlmbackend.repository }}:{{ .Values.hlmbackend.tag }}"
3240 value : {{ .Values.postgresql.endpoint.password }}
3341 - name : SPRING_POSTGRES_DB_HOST
3442 value : {{ .Values.postgresql.endpoint.address }}
43+ - name : SPRING_LIQUIBASE_LIQUIBASESCHEMA
44+ value : {{ .Values.postgresql.endpoint.schema }}
45+ - name : SPRING_LIQUIBASE_DEFAULTSCHEMA
46+ value : {{ .Values.postgresql.endpoint.schema }}
47+ - name : SPRING_JPA_PROPERTIES_HIBERNATE_DEFAULT_SCHEMA
48+ value : {{ .Values.postgresql.endpoint.schema }}
3549 - name : KEY_SELECTOR_URL
3650 value : " {{ .Values.hlmbackend.environment.key_selector_url }}"
3751 - name : COLLECT_METRICS
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ postgresql:
2626 port : 5432
2727 user : healenium_user
2828 dbName : healenium
29- schema : healenium
29+ schema : public
3030 password : YDk2nmNs4s9aCP6K
3131
3232imitator :
You can’t perform that action at this time.
0 commit comments