Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
fix: fix env var indentation (#388)
Browse files Browse the repository at this point in the history
* fix: fix env var indentation

* chore: bump chart version

* chore: bump chart version
  • Loading branch information
brianjahnke authored Jul 2, 2021
1 parent 31a45ab commit 5d2425c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/dataspace-connector/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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: 0.1.2
version: 0.1.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
2 changes: 1 addition & 1 deletion charts/dataspace-connector/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ metadata:
{{- include "dataspace-connector.labels" . | nindent 4 }}
data:
{{- range $key, $val := .Values.env.config }}
{{ $key }}: {{ $val }}
{{ $key }}: {{ $val }}
{{- end}}
{{- if .Values.postgresql }}
SPRING_DATASOURCE_PLATFORM: "postgres"
Expand Down
2 changes: 1 addition & 1 deletion charts/dataspace-connector/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ metadata:
type: Opaque
data:
{{- range $key, $val := .Values.env.secrets }}
{{ $key }}: {{ $val | b64enc }}
{{ $key }}: {{ $val | b64enc }}
{{- end}}
{{- if .Values.postgresql }}
SPRING_DATASOURCE_USERNAME: {{ .Values.postgresql.postgresqlUsername }}
Expand Down

0 comments on commit 5d2425c

Please sign in to comment.