mirror of https://git.rancher.io/charts
18 lines
462 B
Smarty
18 lines
462 B
Smarty
{{- define "system_default_registry" -}}
|
|
{{- if .Values.global.cattle.systemDefaultRegistry -}}
|
|
{{- printf "%s/" .Values.global.cattle.systemDefaultRegistry -}}
|
|
{{- else -}}
|
|
{{- "" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- define "registry_url" -}}
|
|
{{- if .Values.global.cattle.systemDefaultRegistry -}}
|
|
{{ include "system_default_registry" . }}
|
|
{{- else if .Values.registryUrl -}}
|
|
{{- printf "%s/" .Values.registryUrl -}}
|
|
{{- else -}}
|
|
{{- "" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|