@@ -80,15 +80,11 @@ spec:
8080 - name : ws
8181 containerPort : {{ .Values.gateway.service.ws.port }}
8282 protocol : TCP
83- {{- if .Values.gateway.metrics.enabled }}
84- - name : metrics
85- containerPort : {{ .Values.gateway.metrics.targetPort }}
86- protocol : TCP
8783 {{- if .Values.gateway.metrics.livenessProbe.enabled }}
8884 livenessProbe :
8985 httpGet :
9086 path : {{ .Values.gateway.metrics.livenessProbe.httpGet.path }}
91- port : {{ .Values.gateway.metrics.livenessProbe.httpGet.port | default "metrics " }}
87+ port : {{ .Values.gateway.metrics.livenessProbe.httpGet.port | default "http " }}
9288 timeoutSeconds : {{ .Values.gateway.metrics.livenessProbe.timeoutSeconds }}
9389 {{- with .Values.gateway.metrics.livenessProbe.initalDelaySeconds }}
9490 initialDelaySeconds : {{ . }}
@@ -107,7 +103,7 @@ spec:
107103 readinessProbe :
108104 httpGet :
109105 path : {{ .Values.gateway.metrics.readinessProbe.httpGet.path }}
110- port : {{ .Values.gateway.metrics.readinessProbe.httpGet.port | default "metrics " }}
106+ port : {{ .Values.gateway.metrics.readinessProbe.httpGet.port | default "http " }}
111107 timeoutSeconds : {{ .Values.gateway.metrics.readinessProbe.timeoutSeconds }}
112108 {{- with .Values.gateway.metrics.readinessProbe.initalDelaySeconds }}
113109 initialDelaySeconds : {{ . }}
@@ -122,7 +118,6 @@ spec:
122118 failureThreshold : {{ . }}
123119 {{- end }}
124120 {{- end }}
125- {{- end }}
126121 resources :
127122 {{- toYaml .Values.gateway.resources | nindent 12 }}
128123 {{- with .Values.gateway.nodeSelector }}
0 commit comments