We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 809561a commit 5a0c24aCopy full SHA for 5a0c24a
2 files changed
charts/ext-proxy/Chart.yaml
@@ -1,7 +1,7 @@
1
apiVersion: v2
2
name: ext-proxy
3
description: A Helm chart for managing different proxy configurations for https://github.com/demeter-run
4
-version: 0.0.6
+version: 0.0.7
5
appVersion: "0.0.1"
6
7
maintainers:
charts/ext-proxy/templates/proxy.yaml
@@ -43,12 +43,11 @@ spec:
43
env: {{ toYaml .Values.proxy.env | nindent 8 }}
44
resources: {{ toYaml .Values.proxy.resources | nindent 10 }}
45
ports:
46
- - name: metrics
47
- containerPort: {{ .Values.proxy.ports.metrics }}
48
- protocol: TCP
49
- - name: proxy
50
- containerPort: {{ .Values.proxy.ports.proxy }}
+ {{- range $name, $port := .Values.proxy.ports }}
+ - name: {{ $name }}
+ containerPort: {{ $port }}
51
protocol: TCP
+ {{- end }}
52
volumeMounts:
53
- name: certs
54
mountPath: /certs
0 commit comments