Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add missing quotes in deployments #495

Merged
merged 1 commit into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading