Skip to content

Commit

Permalink
Merge pull request #495 from akash4sh/main
Browse files Browse the repository at this point in the history
fix: add missing quotes in deployments
  • Loading branch information
vramk23 authored May 24, 2024
2 parents 8917ae8 + 535916a commit ba3beb3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/kad/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.2
version: 1.0.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
3 changes: 1 addition & 2 deletions charts/kad/templates/agent-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ spec:
- name: PG_DB_HOST
value: {{ .Values.postgres.host }}
- name: PG_DB_PORT
value: {{ .Values.postgres.port }}
value: "{{ .Values.postgres.port }}"
- name: PG_DB_SERVICE_USERNAME
value: {{ .Values.postgres.userName }}
- name: PG_DB_ENTITY_NAME
Expand All @@ -86,7 +86,6 @@ spec:
configMapKeyRef:
name: kad-agent-config
key: clusterIssuerName
value: {{ .Values.postgres.dbName }}
- name: PG_DB_ADMIN_CRED_IDENTIFIER
value: {{ .Values.postgres.adminCredIdentifer }}
resources:
Expand Down
2 changes: 1 addition & 1 deletion charts/kad/templates/config-worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ spec:
- name: PG_DB_HOST
value: {{ .Values.postgres.host }}
- name: PG_DB_PORT
value: {{ .Values.postgres.port }}
value: "{{ .Values.postgres.port }}"
- name: PG_DB_SERVICE_USERNAME
value: {{ .Values.postgres.userName }}
- name: PG_DB_ENTITY_NAME
Expand Down
2 changes: 1 addition & 1 deletion charts/kad/templates/deployment-worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ spec:
- name: PG_DB_HOST
value: {{ .Values.postgres.host }}
- name: PG_DB_PORT
value: {{ .Values.postgres.port }}
value: "{{ .Values.postgres.port }}"
- name: PG_DB_SERVICE_USERNAME
value: {{ .Values.postgres.userName }}
- name: PG_DB_ENTITY_NAME
Expand Down
2 changes: 1 addition & 1 deletion charts/kad/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ vaultCred:

postgres:
host: postgres
port: 9042
port: 5432
userName: capten
entityName: postgres
dbName: capten
Expand Down

0 comments on commit ba3beb3

Please sign in to comment.