2021-05-03 10:58:40 +00:00
|
|
|
--- charts-original/templates/_helpers.tpl
|
|
|
|
+++ charts/templates/_helpers.tpl
|
2024-02-09 16:52:30 +00:00
|
|
|
@@ -1,9 +1,12 @@
|
2021-05-03 10:58:40 +00:00
|
|
|
{{/* generate the image name for a component*/}}
|
|
|
|
{{- define "tigera-operator.image" -}}
|
|
|
|
-{{- if .registry -}}
|
|
|
|
- {{- .registry | trimSuffix "/" -}}/
|
|
|
|
+{{- if .Values.global.systemDefaultRegistry -}}
|
|
|
|
+{{- $_ := set .Values.tigeraOperator "registry" .Values.global.systemDefaultRegistry -}}
|
|
|
|
{{- end -}}
|
|
|
|
-{{- .image -}}:{{- .version -}}
|
|
|
|
+{{- if .Values.tigeraOperator.registry -}}
|
|
|
|
+ {{- .Values.tigeraOperator.registry | trimSuffix "/" -}}/
|
|
|
|
+{{- end -}}
|
|
|
|
+{{- .Values.tigeraOperator.image -}}:{{- .Values.tigeraOperator.version -}}
|
|
|
|
{{- end -}}
|
2024-02-09 16:52:30 +00:00
|
|
|
|
|
|
|
{{/*
|