diff --git a/charts/planka/Chart.yaml b/charts/planka/Chart.yaml index 867a7067..cd0a32fb 100644 --- a/charts/planka/Chart.yaml +++ b/charts/planka/Chart.yaml @@ -15,17 +15,17 @@ 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 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.12.0" +appVersion: '1.12.0' dependencies: -- alias: postgresql - condition: postgresql.enabled - name: postgresql - repository: &bitnami-repo https://charts.bitnami.com/bitnami - version: 12.5.1 + - alias: postgresql + condition: postgresql.enabled + name: postgresql + repository: &bitnami-repo https://charts.bitnami.com/bitnami + version: 12.5.1 diff --git a/charts/planka/templates/deployment.yaml b/charts/planka/templates/deployment.yaml index 1af54075..c2f4f4a9 100644 --- a/charts/planka/templates/deployment.yaml +++ b/charts/planka/templates/deployment.yaml @@ -75,6 +75,10 @@ spec: value: {{ required "A secret key needs to be generated using 'openssl rand -hex 64' and assigned to secretkey." .Values.secretkey }} - name: TRUST_PROXY value: "0" + {{ range $k, $v := .Values.env }} + - name: {{ $k | quote }} + value: {{ $v | quote }} + {{- end }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}