Skip to content

Commit ba3beb3

Browse files
authored
Merge pull request #495 from akash4sh/main
fix: add missing quotes in deployments
2 parents 8917ae8 + 535916a commit ba3beb3

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

charts/kad/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.0.2
18+
version: 1.0.3
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/kad/templates/agent-deployment.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ spec:
7474
- name: PG_DB_HOST
7575
value: {{ .Values.postgres.host }}
7676
- name: PG_DB_PORT
77-
value: {{ .Values.postgres.port }}
77+
value: "{{ .Values.postgres.port }}"
7878
- name: PG_DB_SERVICE_USERNAME
7979
value: {{ .Values.postgres.userName }}
8080
- name: PG_DB_ENTITY_NAME
@@ -86,7 +86,6 @@ spec:
8686
configMapKeyRef:
8787
name: kad-agent-config
8888
key: clusterIssuerName
89-
value: {{ .Values.postgres.dbName }}
9089
- name: PG_DB_ADMIN_CRED_IDENTIFIER
9190
value: {{ .Values.postgres.adminCredIdentifer }}
9291
resources:

charts/kad/templates/config-worker-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ spec:
7474
- name: PG_DB_HOST
7575
value: {{ .Values.postgres.host }}
7676
- name: PG_DB_PORT
77-
value: {{ .Values.postgres.port }}
77+
value: "{{ .Values.postgres.port }}"
7878
- name: PG_DB_SERVICE_USERNAME
7979
value: {{ .Values.postgres.userName }}
8080
- name: PG_DB_ENTITY_NAME

charts/kad/templates/deployment-worker-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
- name: PG_DB_HOST
6161
value: {{ .Values.postgres.host }}
6262
- name: PG_DB_PORT
63-
value: {{ .Values.postgres.port }}
63+
value: "{{ .Values.postgres.port }}"
6464
- name: PG_DB_SERVICE_USERNAME
6565
value: {{ .Values.postgres.userName }}
6666
- name: PG_DB_ENTITY_NAME

charts/kad/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ vaultCred:
5454

5555
postgres:
5656
host: postgres
57-
port: 9042
57+
port: 5432
5858
userName: capten
5959
entityName: postgres
6060
dbName: capten

0 commit comments

Comments
 (0)