diff --git a/helm/templates/core-deployment.yaml b/helm/templates/core-deployment.yaml index e49eda4..87986b2 100644 --- a/helm/templates/core-deployment.yaml +++ b/helm/templates/core-deployment.yaml @@ -44,14 +44,14 @@ spec: - name: http containerPort: {{ .Values.service.core.targetPort }} protocol: TCP - #livenessProbe: - # httpGet: - # path: / - # port: http - #readinessProbe: - # httpGet: - # path: / - # port: http + livenessProbe: + httpGet: + path: /health + port: http + readinessProbe: + httpGet: + path: /health + port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} diff --git a/helm/templates/shard-deployment.yaml b/helm/templates/shard-deployment.yaml index c293721..04dba58 100644 --- a/helm/templates/shard-deployment.yaml +++ b/helm/templates/shard-deployment.yaml @@ -46,14 +46,14 @@ spec: - name: http containerPort: {{ .Values.service.shard.targetPort }} protocol: TCP - #livenessProbe: - # httpGet: - # path: / - # port: http - #readinessProbe: - # httpGet: - # path: / - # port: http + livenessProbe: + httpGet: + path: /health + port: http + readinessProbe: + httpGet: + path: /health + port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }}