20 lines
536 B
Smarty
20 lines
536 B
Smarty
|
{{/*
|
||
|
The OpenVPN config secret to be included.
|
||
|
*/}}
|
||
|
{{- define "common.addon.vpn.secret" -}}
|
||
|
{{- if and .Values.addons.vpn.configFile (not .Values.addons.vpn.configFileSecret) }}
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: {{ include "common.names.fullname" . }}-vpnconfig
|
||
|
labels: {{- include "common.labels" $ | nindent 4 }}
|
||
|
annotations: {{- include "common.annotations" $ | nindent 4 }}
|
||
|
stringData:
|
||
|
{{- with .Values.addons.vpn.configFile }}
|
||
|
vpnConfigfile: |-
|
||
|
{{- . | nindent 4}}
|
||
|
{{- end }}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|