39 lines
920 B
YAML
39 lines
920 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: qris-jatim
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: qris-jatim
|
|
readinessProbe:
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
initialDelaySeconds: 10
|
|
timeoutSeconds: 1
|
|
periodSeconds: 10
|
|
httpGet:
|
|
scheme: HTTP
|
|
port: 3000
|
|
path: /
|
|
livenessProbe:
|
|
failureThreshold: 3
|
|
successThreshold: 1
|
|
initialDelaySeconds: 60
|
|
timeoutSeconds: 1
|
|
periodSeconds: 60
|
|
httpGet:
|
|
scheme: HTTP
|
|
port: 3000
|
|
path: /
|
|
startupProbe:
|
|
failureThreshold: 6
|
|
successThreshold: 1
|
|
initialDelaySeconds: 120 #0
|
|
timeoutSeconds: 1
|
|
periodSeconds: 10
|
|
httpGet:
|
|
scheme: HTTP
|
|
port: 3000
|
|
path: / |