diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index 8518cce..2a894ad 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -111,6 +111,13 @@ spec: lifecycle: {{- toYaml .Values.lifecycle | nindent 12 }} {{- end }} + ports: + - containerPort: {{ .Values.service.target }} + name: http + protocol: TCP + - containerPort: 8090 + name: signaller + protocol: TCP volumeMounts: - name: template mountPath: /etc/varnish/tmpl diff --git a/chart/templates/statefulset.yaml b/chart/templates/statefulset.yaml index d62c5f7..18f9994 100644 --- a/chart/templates/statefulset.yaml +++ b/chart/templates/statefulset.yaml @@ -104,6 +104,13 @@ spec: lifecycle: {{- toYaml .Values.lifecycle | nindent 12 }} {{- end }} + ports: + - containerPort: {{ .Values.service.target }} + name: http + protocol: TCP + - containerPort: 8090 + name: signaller + protocol: TCP volumeMounts: - name: template mountPath: /etc/varnish/tmpl