12 lines
435 B
Smarty
12 lines
435 B
Smarty
|
{{/*
|
||
|
Template to render Wireguard addon. It will add the container to the list of additionalContainers.
|
||
|
*/}}
|
||
|
*/}}
|
||
|
{{- define "common.addon.wireguard" -}}
|
||
|
{{/* Append the Wireguard container to the additionalContainers */}}
|
||
|
{{- $container := fromYaml (include "common.addon.wireguard.container" .) -}}
|
||
|
{{- if $container -}}
|
||
|
{{- $_ := set .Values.additionalContainers "addon-wireguard" $container -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|