File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description: "Redis is an in-memory database that persists on disk. The data mod
44
55type : application
66
7- version : 1.0.2
7+ version : 1.0.3
88
99appVersion : " 7.2.7"
1010
Original file line number Diff line number Diff line change @@ -149,7 +149,12 @@ redis-metrics-config
149149{{- end }}
150150
151151{{- define " busybox.image" -}}
152- {{ .Values.busyboxImage.registry | default ( .Values.image.registry | default " docker.io" ) }}/{{ .Values.busyboxImage.repository }}:{{ .Values.busyboxImage.tag }}
152+ {{ $registry := .Values.busyboxImage.registry | default ( .Values.image.registry | default " docker.io" )}}
153+ {{- if eq $registry " docker.io" -}}
154+ {{ $registry }}/busybox:{{ .Values.busyboxImage.tag }}
155+ {{- else -}}
156+ {{ $registry }}/apecloud/busybox:{{ .Values.busyboxImage.tag }}
157+ {{- end -}}
153158{{- end }}
154159
155160{{- define " metrics.repository" -}}
You can’t perform that action at this time.
0 commit comments