Skip to content

Commit

Permalink
fix(docker-registry-ui): force toString on registry.extraEnv values
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit committed Jul 15, 2023
1 parent be28093 commit 40a9851
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/docker-registry-ui/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: docker-registry-ui
version: 1.1.0
version: 1.1.1
appVersion: "2.5.0"
kubeVersion: ">=1.19.0-0"
description: The simplest and most complete UI for your private registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
value: {{ printf "%s:%d" "0.0.0.0" (.Values.registry.service.targetPort | int) }}
{{- range .Values.registry.extraEnv }}
- name: {{ .name }}
value: {{ .value }}
value: {{ .value }} | toString
{{- end }}
ports:
- name: http
Expand Down

0 comments on commit 40a9851

Please sign in to comment.