Skip to content

Commit 40a9851

Browse files
committed
fix(docker-registry-ui): force toString on registry.extraEnv values
1 parent be28093 commit 40a9851

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

charts/docker-registry-ui/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: docker-registry-ui
3-
version: 1.1.0
3+
version: 1.1.1
44
appVersion: "2.5.0"
55
kubeVersion: ">=1.19.0-0"
66
description: The simplest and most complete UI for your private registry

charts/docker-registry-ui/templates/registry-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
value: {{ printf "%s:%d" "0.0.0.0" (.Values.registry.service.targetPort | int) }}
3939
{{- range .Values.registry.extraEnv }}
4040
- name: {{ .name }}
41-
value: {{ .value }}
41+
value: {{ .value }} | toString
4242
{{- end }}
4343
ports:
4444
- name: http

0 commit comments

Comments
 (0)