Fix port quoting(int vs string).
Showing
2 changed files
with
3 additions
and
3 deletions
... | @@ -39,7 +39,7 @@ spec: | ... | @@ -39,7 +39,7 @@ spec: |
39 | - name: POSTGRES_USER | 39 | - name: POSTGRES_USER |
40 | value: {{ include "moqui.entity_ds_user" . }} | 40 | value: {{ include "moqui.entity_ds_user" . }} |
41 | - name: POSTGRES_PORT | 41 | - name: POSTGRES_PORT |
42 | value: {{ include "moqui.entity_ds_port" . }} | 42 | value: {{ include "moqui.entity_ds_port" . | quote }} |
43 | command: | 43 | command: |
44 | - bash | 44 | - bash |
45 | - -cx | 45 | - -cx |
... | @@ -66,7 +66,7 @@ spec: | ... | @@ -66,7 +66,7 @@ spec: |
66 | - name: entity_ds_host | 66 | - name: entity_ds_host |
67 | value: {{ include "moqui.entity_ds_host" . }} | 67 | value: {{ include "moqui.entity_ds_host" . }} |
68 | - name: entity_ds_port | 68 | - name: entity_ds_port |
69 | value: {{ include "moqui.entity_ds_port" . }} | 69 | value: {{ include "moqui.entity_ds_port" . | quote }} |
70 | - name: entity_ds_user | 70 | - name: entity_ds_user |
71 | value: {{ include "moqui.entity_ds_user" . }} | 71 | value: {{ include "moqui.entity_ds_user" . }} |
72 | - name: entity_ds_password | 72 | - name: entity_ds_password | ... | ... |
... | @@ -8,7 +8,7 @@ configMap: | ... | @@ -8,7 +8,7 @@ configMap: |
8 | entity_ds_db_conf: "postgres" | 8 | entity_ds_db_conf: "postgres" |
9 | entity_ds_database: "moqui" | 9 | entity_ds_database: "moqui" |
10 | entity_ds_host: external-postgres | 10 | entity_ds_host: external-postgres |
11 | entity_ds_port: 5432 | 11 | entity_ds_port: "5432" |
12 | entity_ds_user: "moqui" | 12 | entity_ds_user: "moqui" |
13 | entity_ds_password: "iuqom" | 13 | entity_ds_password: "iuqom" |
14 | 14 | ... | ... |
-
Please register or sign in to post a comment