We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88a1b56 commit b2596d3Copy full SHA for b2596d3
kubernetes/chart/zulip/templates/service.yaml
@@ -8,7 +8,11 @@ spec:
8
type: {{ .Values.service.type }}
9
ports:
10
- port: {{ .Values.service.port }}
11
+ {{- if .Values.zulip.environment.DISABLE_HTTPS }}
12
targetPort: http
13
+ {{- else }}
14
+ targetPort: https
15
+ {{- end }}
16
protocol: TCP
17
name: http
18
selector:
kubernetes/chart/zulip/templates/statefulset.yaml
@@ -50,6 +50,9 @@ spec:
50
- name: http
51
containerPort: 80
52
53
+ - name: https
54
+ containerPort: 443
55
+ protocol: TCP
56
volumeMounts:
57
- name: {{ include "zulip.fullname" . }}-persistent-storage
58
mountPath: /data
0 commit comments