Allow for the postgresql checkImage to be specified.
Showing
2 changed files
with
6 additions
and
1 deletions
... | @@ -51,7 +51,7 @@ spec: | ... | @@ -51,7 +51,7 @@ spec: |
51 | {{- end }} | 51 | {{- end }} |
52 | {{- if (.Values.checkDsConnection.enabled) }} | 52 | {{- if (.Values.checkDsConnection.enabled) }} |
53 | - name: postgresql-check-connection | 53 | - name: postgresql-check-connection |
54 | {{ include "moqui.image-helper" .Values.postgresql.image | nindent 10 }} | 54 | {{ include "moqui.image-helper" (coalesce .Values.postgresql.image .Values.checkImage) | nindent 10 }} |
55 | env: | 55 | env: |
56 | - name: POSTGRES_HOST | 56 | - name: POSTGRES_HOST |
57 | value: {{ include "moqui.entity_ds_host" . }} | 57 | value: {{ include "moqui.entity_ds_host" . }} | ... | ... |
... | @@ -25,6 +25,11 @@ postgresql: | ... | @@ -25,6 +25,11 @@ postgresql: |
25 | database: moqui | 25 | database: moqui |
26 | username: moqui | 26 | username: moqui |
27 | password: iuqom | 27 | password: iuqom |
28 | checkImage: | ||
29 | pullPolicy: IfNotPresent | ||
30 | registry: null | ||
31 | repository: null | ||
32 | tag: latest | ||
28 | jdbcImage: | 33 | jdbcImage: |
29 | enabled: false | 34 | enabled: false |
30 | pullPolicy: IfNotPresent | 35 | pullPolicy: IfNotPresent | ... | ... |
-
Please register or sign in to post a comment