File tree Expand file tree Collapse file tree
charts/rustcloak-operator Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737 - name : {{ .Chart.Name }}
3838 securityContext :
3939 {{- toYaml .Values.securityContext | nindent 12 }}
40- image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
40+ {{- $image := .Values.image.repository }}
41+ {{- with .Values.image.registry }}
42+ {{- $image = (printf "%s/%s" . $image) }}
43+ {{- end }}
44+ image : " {{ $image }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
4145 imagePullPolicy : {{ .Values.image.pullPolicy }}
4246 args :
4347 {{- with .Values.application.legacy }}
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ application:
88 legacy : false
99
1010image :
11- repository : withlazers/rustcloak-operator
11+ registry : ghcr.io/withlazers/rustcloak-operator
12+ repository : rustcloak-operator
1213 pullPolicy : IfNotPresent
1314 tag : " "
1415
You can’t perform that action at this time.
0 commit comments