add livenessProbe to events worker
This commit is contained in:
parent
8f0755e8b8
commit
9d4568508a
|
@ -2,5 +2,5 @@
|
||||||
kustomization/bases/charts
|
kustomization/bases/charts
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
.DS_Store
|
.DS_Store
|
||||||
secrets/secrets.yaml
|
secrets/**/*
|
||||||
backup_*.sql.gzip
|
backup_*.sql.gzip
|
||||||
|
|
|
@ -25,3 +25,15 @@ spec:
|
||||||
envFrom:
|
envFrom:
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: secrets
|
name: secrets
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthz
|
||||||
|
port: 8080
|
||||||
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 10
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthz
|
||||||
|
port: 8080
|
||||||
|
initialDelaySeconds: 30
|
||||||
|
periodSeconds: 10
|
||||||
|
|
2
secrets
2
secrets
|
@ -1 +1 @@
|
||||||
Subproject commit 8a09988fbd3fb68f41e6485f7422e78bfd77fddf
|
Subproject commit 277864d17d8905f8a093ca9312ca71d118a7c896
|
Loading…
Reference in New Issue