peertube: Fix loading of existing secret data
This commit is contained in:
parent
c1b0d8469a
commit
c39a4f7ab2
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ description: Free software to take back control of your videos
|
||||||
icon: https://upload.wikimedia.org/wikipedia/commons/2/2b/Logo_de_PeerTube.svg
|
icon: https://upload.wikimedia.org/wikipedia/commons/2/2b/Logo_de_PeerTube.svg
|
||||||
|
|
||||||
type: application
|
type: application
|
||||||
version: 0.2.0
|
version: 0.2.1
|
||||||
appVersion: 5.0.0
|
appVersion: 5.0.0
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Alexander Olofsson
|
- name: Alexander Olofsson
|
||||||
|
|
|
@ -12,9 +12,9 @@ data:
|
||||||
{{- if .Values.config.secret }}
|
{{- if .Values.config.secret }}
|
||||||
PEERTUBE_SECRET: {{ .Values.config.secret | b64enc }}
|
PEERTUBE_SECRET: {{ .Values.config.secret | b64enc }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
{{- $existing := (lookup "v1" "Secret" .Release.Namespace (include "peertube.fullname" .)).data.PEERTUBE_SECRET }}
|
{{- $existing := (lookup "v1" "Secret" .Release.Namespace (include "peertube.fullname" .)) }}
|
||||||
{{- if $existing }}
|
{{- if $existing }}
|
||||||
PEERTUBE_SECRET: {{ $existing }}
|
PEERTUBE_SECRET: {{ $existing.data.PEERTUBE_SECRET }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
PEERTUBE_SECRET: {{ (include "peertube.randHex" 32) | b64enc }}
|
PEERTUBE_SECRET: {{ (include "peertube.randHex" 32) | b64enc }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
Loading…
Reference in a new issue