X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=helm_chart%2Fappmgr%2Ftemplates%2Fdeployment.yaml;fp=helm_chart%2Fappmgr%2Ftemplates%2Fdeployment.yaml;h=0a7eba4e5f477fb1c37699d263b14fae77cf500c;hb=193caf9d7e08b84a0b9c1f0352924a7efd77e77c;hp=0ef46d2cbc82b1bbbe069021cc7440afbf53234d;hpb=cb4b2ad8e2f99eadea145e480da556c58b0a47b5;p=ric-plt%2Fappmgr.git diff --git a/helm_chart/appmgr/templates/deployment.yaml b/helm_chart/appmgr/templates/deployment.yaml index 0ef46d2..0a7eba4 100755 --- a/helm_chart/appmgr/templates/deployment.yaml +++ b/helm_chart/appmgr/templates/deployment.yaml @@ -54,16 +54,18 @@ spec: name: {{ .Release.Name }}-appenv livenessProbe: httpGet: - path: {{ .Values.service.health_check_endpoint }} + path: {{ .Values.service.health_alive_check_endpoint }} port: 8080 initialDelaySeconds: 5 - periodSeconds: 15 + periodSeconds: 5 + failureThreshold: 3 readinessProbe: httpGet: - path: {{ .Values.service.health_check_endpoint }} + path: {{ .Values.service.health_ready_check_endpoint }} port: 8080 initialDelaySeconds: 5 - periodSeconds: 15 + periodSeconds: 5 + failureThreshold: 3 restartPolicy: Always resources: {{- toYaml .Values.resources | nindent 12 }}