mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 07:20:12 +01:00
Introduce secretEnv for secret value provisioning
This commit is contained in:
parent
36e29a405e
commit
03f565bf95
3 changed files with 15 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
name: wekan
|
name: wekan
|
||||||
version: 1.0.1
|
version: 1.0.2
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
description: Open Source kanban
|
description: Open Source kanban
|
||||||
home: https://wekan.github.io/
|
home: https://wekan.github.io/
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,12 @@ spec:
|
||||||
value: {{ .value | quote }}
|
value: {{ .value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- range $key := .Values.secretEnv }}
|
||||||
|
{{- if .value }}
|
||||||
|
- name: {{ .name }}
|
||||||
|
value: {{ .value | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /
|
path: /
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,14 @@ env:
|
||||||
- name: ""
|
- name: ""
|
||||||
value: ""
|
value: ""
|
||||||
|
|
||||||
|
## Specify additional secret environmental variables for the
|
||||||
|
## Deployment. These can e.g. be provided by a Secret and allow
|
||||||
|
## to store passwords separately
|
||||||
|
##
|
||||||
|
secretEnv:
|
||||||
|
- name: ""
|
||||||
|
value: ""
|
||||||
|
|
||||||
service:
|
service:
|
||||||
type: NodePort
|
type: NodePort
|
||||||
port: 8080
|
port: 8080
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue