fix(grampsweb): environment variable name
This commit is contained in:
parent
2715b75c90
commit
8c589d1516
4 changed files with 11 additions and 11 deletions
|
@ -3,7 +3,7 @@ name: grampsweb
|
||||||
description: A Helm chart for gramps web
|
description: A Helm chart for gramps web
|
||||||
icon: https://raw.githubusercontent.com/gramps-project/Gramps.js/main/images/icon512.png
|
icon: https://raw.githubusercontent.com/gramps-project/Gramps.js/main/images/icon512.png
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.3
|
version: 0.1.4
|
||||||
appVersion: "24.1.0"
|
appVersion: "24.1.0"
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: WrenIX
|
- name: WrenIX
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
= grampsweb
|
= 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/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]
|
image::https://img.shields.io/badge/AppVersion-24.1.0-informational?style=flat-square[AppVersion: 24.1.0]
|
||||||
== Maintainers
|
== Maintainers
|
||||||
|
|
|
@ -38,9 +38,9 @@ spec:
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
{{- with .Values.gramps }}
|
{{- with .Values.gramps }}
|
||||||
env:
|
env:
|
||||||
- name: "TREE"
|
- name: "GRAMPSWEB_TREE"
|
||||||
value: "{{ .tree }}"
|
value: "{{ .tree }}"
|
||||||
- name: "BASE_URL"
|
- name: "GRAMPSWEB_BASE_URL"
|
||||||
value: "{{ .baseURL }}"
|
value: "{{ .baseURL }}"
|
||||||
{{- end }}
|
{{- end }}
|
||||||
envFrom:
|
envFrom:
|
||||||
|
|
|
@ -7,23 +7,23 @@ metadata:
|
||||||
{{- include "grampsweb.labels" . | nindent 4 }}
|
{{- include "grampsweb.labels" . | nindent 4 }}
|
||||||
data:
|
data:
|
||||||
{{- with .Values.gramps.mediaBaseDir }}
|
{{- with .Values.gramps.mediaBaseDir }}
|
||||||
MEDIA_BASE_DIR: {{ . | b64enc }}
|
GRAMPSWEB_MEDIA_BASE_DIR: {{ . | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.gramps.mail.host }}
|
{{- with .Values.gramps.mail.host }}
|
||||||
EMAIL_HOST: {{ toYaml . | b64enc }}
|
GRAMPSWEB_EMAIL_HOST: {{ toYaml . | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.gramps.mail.port }}
|
{{- with .Values.gramps.mail.port }}
|
||||||
EMAIL_PORT: {{ toYaml . | b64enc }}
|
GRAMPSWEB_EMAIL_PORT: {{ toYaml . | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.gramps.mail.username }}
|
{{- with .Values.gramps.mail.username }}
|
||||||
EMAIL_HOST_USER: {{ toYaml . | b64enc }}
|
GRAMPSWEB_EMAIL_HOST_USER: {{ toYaml . | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.gramps.mail.password }}
|
{{- with .Values.gramps.mail.password }}
|
||||||
EMAIL_HOST_PASSWORD: {{ toYaml . | b64enc }}
|
GRAMPSWEB_EMAIL_HOST_PASSWORD: {{ toYaml . | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.gramps.mail.useTLS }}
|
{{- with .Values.gramps.mail.useTLS }}
|
||||||
EMAIL_USE_TLS: {{ toYaml . | b64enc }}
|
GRAMPSWEB_EMAIL_USE_TLS: {{ toYaml . | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.gramps.mail.from }}
|
{{- with .Values.gramps.mail.from }}
|
||||||
DEFAULT_FROM_EMAIL: {{ toYaml . | b64enc }}
|
GRAMPSWEB_DEFAULT_FROM_EMAIL: {{ toYaml . | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue