mirror of https://github.com/linkerd/linkerd2.git
10 lines
365 B
Smarty
10 lines
365 B
Smarty
{{- define "linkerd.proxy.validation" -}}
|
|
{{- if .disableIdentity -}}
|
|
{{- fail (printf "Can't disable identity mTLS for %s. Set '.Values.global.proxy.disableIdentity' to 'false'" .component) -}}
|
|
{{- end -}}
|
|
|
|
{{- if .disableTap -}}
|
|
{{- fail (printf "Can't disable tap for %s. Set '.Values.global.proxy.disableTap' to 'false'" .component) -}}
|
|
{{- end -}}
|
|
{{- end -}}
|