Skip to content

Commit

Permalink
Fix typos in template
Browse files Browse the repository at this point in the history
  • Loading branch information
tomijange committed Jan 15, 2024
1 parent f754ddd commit 8868bac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,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.1.4
version: 1.1.5

# 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
2 changes: 1 addition & 1 deletion templates/postgres-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
imagePullPolicy: {{ .Values.postgres.image.pullPolicy }}
env:
- name: POSTGRES_USER
value: {{ .Values.postgres.auth.user }}
value: {{ .Values.postgres.auth.username }}
- name: POSTGRES_PASSWORD
value: {{ .Values.postgres.auth.password }}
- name: POSTGRES_DB
Expand Down
2 changes: 1 addition & 1 deletion templates/service-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
imagePullPolicy: {{ .Values.service.image.pullPolicy }}
env:
- name: SPRING_DATASOURCE_URL
value: "jdbc:postgresql://{{ .Release.Name }}-postgresql.{{ .Release.Namespace }}.svc/{{ .Values.postgres.auth.database }}"
value: "jdbc:postgresql://{{ .Release.Name }}-postgres.{{ .Release.Namespace }}.svc/{{ .Values.postgres.auth.database }}"
- name: SPRING_DATASOURCE_USERNAME
value: {{ .Values.postgres.auth.username }}
- name: SPRING_DATASOURCE_PASSWORD
Expand Down

0 comments on commit 8868bac

Please sign in to comment.