diff --git a/grampsweb/Chart.yaml b/grampsweb/Chart.yaml index e3d0c8b..0426216 100644 --- a/grampsweb/Chart.yaml +++ b/grampsweb/Chart.yaml @@ -3,7 +3,7 @@ name: grampsweb description: A Helm chart for gramps web icon: https://raw.githubusercontent.com/gramps-project/Gramps.js/main/images/icon512.png type: application -version: 0.1.3 +version: 0.1.4 appVersion: "24.1.0" maintainers: - name: WrenIX diff --git a/grampsweb/README.adoc b/grampsweb/README.adoc index ee2e64e..4f52b4c 100644 --- a/grampsweb/README.adoc +++ b/grampsweb/README.adoc @@ -2,7 +2,7 @@ = grampsweb -image::https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square[Version: 0.1.3] +image::https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square[Version: 0.1.4] image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application] image::https://img.shields.io/badge/AppVersion-24.1.0-informational?style=flat-square[AppVersion: 24.1.0] == Maintainers diff --git a/grampsweb/templates/deployment.yaml b/grampsweb/templates/deployment.yaml index b69a0af..7c6592f 100644 --- a/grampsweb/templates/deployment.yaml +++ b/grampsweb/templates/deployment.yaml @@ -38,9 +38,9 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} {{- with .Values.gramps }} env: - - name: "TREE" + - name: "GRAMPSWEB_TREE" value: "{{ .tree }}" - - name: "BASE_URL" + - name: "GRAMPSWEB_BASE_URL" value: "{{ .baseURL }}" {{- end }} envFrom: diff --git a/grampsweb/templates/secret.yaml b/grampsweb/templates/secret.yaml index 0bfd76f..ab2b1b0 100644 --- a/grampsweb/templates/secret.yaml +++ b/grampsweb/templates/secret.yaml @@ -7,23 +7,23 @@ metadata: {{- include "grampsweb.labels" . | nindent 4 }} data: {{- with .Values.gramps.mediaBaseDir }} - MEDIA_BASE_DIR: {{ . | b64enc }} + GRAMPSWEB_MEDIA_BASE_DIR: {{ . | b64enc }} {{- end }} {{- with .Values.gramps.mail.host }} - EMAIL_HOST: {{ toYaml . | b64enc }} + GRAMPSWEB_EMAIL_HOST: {{ toYaml . | b64enc }} {{- end }} {{- with .Values.gramps.mail.port }} - EMAIL_PORT: {{ toYaml . | b64enc }} + GRAMPSWEB_EMAIL_PORT: {{ toYaml . | b64enc }} {{- end }} {{- with .Values.gramps.mail.username }} - EMAIL_HOST_USER: {{ toYaml . | b64enc }} + GRAMPSWEB_EMAIL_HOST_USER: {{ toYaml . | b64enc }} {{- end }} {{- with .Values.gramps.mail.password }} - EMAIL_HOST_PASSWORD: {{ toYaml . | b64enc }} + GRAMPSWEB_EMAIL_HOST_PASSWORD: {{ toYaml . | b64enc }} {{- end }} {{- with .Values.gramps.mail.useTLS }} - EMAIL_USE_TLS: {{ toYaml . | b64enc }} + GRAMPSWEB_EMAIL_USE_TLS: {{ toYaml . | b64enc }} {{- end }} {{- with .Values.gramps.mail.from }} - DEFAULT_FROM_EMAIL: {{ toYaml . | b64enc }} + GRAMPSWEB_DEFAULT_FROM_EMAIL: {{ toYaml . | b64enc }} {{- end }}