diff --git a/charts/shlink-web/CHANGELOG.md b/charts/shlink-web/CHANGELOG.md index 8e346d5c..b461bacc 100644 --- a/charts/shlink-web/CHANGELOG.md +++ b/charts/shlink-web/CHANGELOG.md @@ -1,7 +1,7 @@ # shlink-web -## 1.3.2 +## 1.3.3 ### Added -- Option to add additional environment variables (extraEnv) +- Consistently use extraEnv (instead of env) diff --git a/charts/shlink-web/Chart.yaml b/charts/shlink-web/Chart.yaml index d14e07c1..de79c905 100644 --- a/charts/shlink-web/Chart.yaml +++ b/charts/shlink-web/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: shlink-web description: A ReactJS-based progressive web application for Shlink. type: application -version: 1.3.2 +version: 1.3.3 appVersion: "4.3.0" home: https://github.com/christianhuth/helm-charts icon: https://shlink.io/images/shlink-logo-blue.svg @@ -14,8 +14,8 @@ sources: - https://shlink.io annotations: artifacthub.io/changes: | - - kind: added - description: Option to add additional environment variables (extraEnv) + - kind: fixed + description: Consistently use extraEnv (instead of env) artifacthub.io/screenshots: | - title: Add a new link that should be shortened. url: https://alejandrocelaya.blog/assets/img/shlink-web-client-3/creation-form-after.png diff --git a/charts/shlink-web/templates/deployment.yaml b/charts/shlink-web/templates/deployment.yaml index ec4f9764..18111970 100644 --- a/charts/shlink-web/templates/deployment.yaml +++ b/charts/shlink-web/templates/deployment.yaml @@ -38,9 +38,9 @@ spec: {{- end }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} - {{- if .Values.env }} + {{- if .Values.extraEnv }} env: - {{- toYaml .Values.env | nindent 12 }} + {{- toYaml .Values.extraEnv | nindent 12 }} {{- end }} ports: - name: http