-
Enhancement
-
Resolution: Done
-
Minor
-
7.0.1.GA
-
OpenShift templates
For RHPAM Kie Server Image are used REST endpoints for liveness and readiness checks in template.
Same checks should be used in RHDM templates.
Old probes
livenessProbe:
exec:
command:
- "/bin/bash"
- "-c"
- "/opt/eap/bin/livenessProbe.sh"
readinessProbe:
exec:
command:
- "/bin/bash"
- "-c"
- "/opt/eap/bin/readinessProbe.sh"
Probes from RHPAM templates
livenessProbe:
exec:
command:
- "/bin/bash"
- "-c"
- "curl --fail --silent -u '${KIE_ADMIN_USER}:${KIE_ADMIN_PWD}' http://localhost:8080/services/rest/server/healthcheck"
initialDelaySeconds: 180
timeoutSeconds: 2
periodSeconds: 15
failureThreshold: 3
readinessProbe:
exec:
command:
- "/bin/bash"
- "-c"
- "curl --fail --silent -u '${KIE_ADMIN_USER}:${KIE_ADMIN_PWD}' http://localhost:8080/services/rest/server/readycheck"
initialDelaySeconds: 60
timeoutSeconds: 2
periodSeconds: 30
failureThreshold: 6