17 lines
424 B
Smarty
17 lines
424 B
Smarty
|
{{/*
|
||
|
The OpenVPN credentials secrets to be included.
|
||
|
*/}}
|
||
|
{{- define "common.addon.openvpn.secret" -}}
|
||
|
{{- with .Values.addons.vpn.openvpn.auth }}
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: {{ include "common.names.fullname" $ }}-openvpn
|
||
|
labels: {{- include "common.labels" $ | nindent 4 }}
|
||
|
annotations: {{- include "common.annotations" $ | nindent 4 }}
|
||
|
data:
|
||
|
VPN_AUTH: {{ . | b64enc }}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|