File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.1.6
18
+ version : 0.1.7
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
22
22
# follow Semantic Versioning. They should reflect the version the application is using.
23
23
# It is recommended to use it with quotes.
24
- appVersion : " v0.6.42 "
24
+ appVersion : " v0.6.44 "
Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ spec:
50
50
value : " 1"
51
51
- name : DATABASE_URL
52
52
{{- if .Values.postgres.enabled }}
53
- value : " postgres://postgres:$(POSTGRES_PASSWORD)@{{ include " digger-backend.fullname" . }}-postgres:5432/postgres?sslmode=disable "
53
+ value : " postgres://postgres:$(POSTGRES_PASSWORD)@{{ include " digger-backend.fullname" . }}-postgres:5432/postgres?sslmode={{ .Values.postgres.sslmode }} "
54
54
{{- else }}
55
55
{{- $pg := .Values.digger.postgres }}
56
- value : " postgres://{{ $pg.user }}:$(POSTGRES_PASSWORD)@{{ $pg.host }}:{{ $pg.port }}/{{ $pg.database }}?sslmode=disable "
56
+ value : " postgres://{{ $pg.user }}:$(POSTGRES_PASSWORD)@{{ $pg.host }}:{{ $pg.port }}/{{ $pg.database }}?sslmode={{ $pg.sslmode }} "
57
57
{{- end }}
58
58
- name : ALLOW_DIRTY
59
59
value : " {{ .Values.digger.postgres.allow_dirty }}"
Original file line number Diff line number Diff line change 6
6
# tag: digger backend image tag
7
7
image :
8
8
repository : registry.digger.dev/diggerhq/digger_backend
9
- tag : " v0.6.42 "
9
+ tag : " v0.6.44 "
10
10
11
11
# livenessProbe and startupProbe settings
12
12
# https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
@@ -90,6 +90,7 @@ digger:
90
90
existingSecretKey : " postgres-password"
91
91
92
92
# to define connection details in chart:
93
+ sslmode : " disable"
93
94
user : " postgres"
94
95
database : " digger"
95
96
host : " pg-postgresql.db"
@@ -100,6 +101,7 @@ digger:
100
101
# configure this section if you want to deploy a postgres db
101
102
# WARNING: use only for test purposes, no persistency has been configured
102
103
postgres :
104
+ sslmode : " disable"
103
105
enabled : false
104
106
image : postgres
105
107
tag : " 14"
You can’t perform that action at this time.
0 commit comments