Files
k3s-silaras/base/deployment-probes.yaml
T
2026-08-10 10:48:06 +07:00

40 lines
981 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: silaras
spec:
template:
spec:
containers:
- name: silaras
readinessProbe:
failureThreshold: 3
successThreshold: 1
initialDelaySeconds: 10
timeoutSeconds: 1
periodSeconds: 10
httpGet:
scheme: HTTP
port: 80
path: /login
livenessProbe:
failureThreshold: 3
successThreshold: 1
initialDelaySeconds: 60
timeoutSeconds: 1
periodSeconds: 60
httpGet:
scheme: HTTP
port: 80
path: /login
startupProbe:
failureThreshold: 6
successThreshold: 1
initialDelaySeconds: 0
timeoutSeconds: 1
periodSeconds: 10
httpGet:
scheme: HTTP
port: 80
path: /login