Skip to content

Commit 81402f2

Browse files
committed
feat(chart): expose varnish and signaller ports on deploy/sts manifests
Signed-off-by: Rémi Verchère <[email protected]>
1 parent 2846c1f commit 81402f2

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

chart/templates/deployment.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,13 @@ spec:
111111
lifecycle:
112112
{{- toYaml .Values.lifecycle | nindent 12 }}
113113
{{- end }}
114+
ports:
115+
- containerPort: {{ .Values.service.target }}
116+
name: http
117+
protocol: TCP
118+
- containerPort: 8090
119+
name: signaller
120+
protocol: TCP
114121
volumeMounts:
115122
- name: template
116123
mountPath: /etc/varnish/tmpl

chart/templates/statefulset.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,13 @@ spec:
104104
lifecycle:
105105
{{- toYaml .Values.lifecycle | nindent 12 }}
106106
{{- end }}
107+
ports:
108+
- containerPort: {{ .Values.service.target }}
109+
name: http
110+
protocol: TCP
111+
- containerPort: 8090
112+
name: signaller
113+
protocol: TCP
107114
volumeMounts:
108115
- name: template
109116
mountPath: /etc/varnish/tmpl

0 commit comments

Comments
 (0)