We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82db42f commit 18c87d4Copy full SHA for 18c87d4
helm_charts/whitebox/templates/deployment.yaml
@@ -19,3 +19,6 @@ spec:
19
image: sqdhub/whitebox:{{ .Values.image.tag }}
20
ports:
21
- containerPort: 8000
22
+ env:
23
+ - name: POSTGRES_DB_URI
24
+ value: postgresql://{{ .Values.postgresql.auth.username }}:{{ .Values.postgresql.auth.password }}@{{ .Release.Name }}-postgresql/postgres
helm_charts/whitebox/values.yaml
@@ -2,7 +2,11 @@ image:
2
tag: main
3
name: whitebox
4
postgresql:
5
+ enabled: true
6
+ storageClass: standard
7
auth:
- user: whitebox
8
+ username: whitebox
9
password: whitebox
- enabled: true
10
+ primary:
11
+ persistence:
12
+ size: 100Mi
0 commit comments