Skip to content
Snippets Groups Projects
Commit ec6121e7 authored by Vadzim Beuzo  [EPAM / GCP]'s avatar Vadzim Beuzo [EPAM / GCP] Committed by Oleksandr Kosse (EPAM)
Browse files

GONRG-9794-liveness-readiness-probes

parent 344e734b
No related branches found
No related tags found
1 merge request!519GONRG-9794-liveness-readiness-probes
......@@ -499,13 +499,6 @@ The following software have components provided under the terms of this license:
- Jakarta XML Binding API (from https://repo1.maven.org/maven2/jakarta/xml/bind/jakarta.xml.bind-api, https://repo1.maven.org/maven2/org/jboss/spec/javax/xml/bind/jboss-jaxb-api_2.3_spec)
- Old JAXB Core (from <https://eclipse-ee4j.github.io/jaxb-ri/>, https://eclipse-ee4j.github.io/jaxb-ri/, https://repo1.maven.org/maven2/com/sun/xml/bind/jaxb-impl)
========================================================================
GPL-2.0-only
========================================================================
The following software have components provided under the terms of this license:
- javax.annotation API (from http://jcp.org/en/jsr/detail?id=250)
========================================================================
GPL-2.0-with-classpath-exception
========================================================================
......
......@@ -30,11 +30,16 @@ spec:
livenessProbe:
failureThreshold: 3
httpGet:
path: api/notification/v1/_ah/warmup
port: 8080
scheme: HTTP
path: /health/liveness
port: 8081
initialDelaySeconds: 120
periodSeconds: 10
readinessProbe:
failureThreshold: 2
httpGet:
path: /health/readiness
port: 8081
periodSeconds: 15
envFrom:
- configMapRef:
name: {{ .Values.conf.configmap | quote }}
......
......@@ -30,11 +30,16 @@ spec:
livenessProbe:
failureThreshold: 3
httpGet:
path: api/notification/v1/_ah/warmup
port: 8080
scheme: HTTP
path: /health/liveness
port: 8081
initialDelaySeconds: 120
periodSeconds: 10
readinessProbe:
failureThreshold: 2
httpGet:
path: /health/readiness
port: 8081
periodSeconds: 15
envFrom:
- configMapRef:
name: {{ .Values.conf.configmap | quote}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment