Merge pull request #28916 from luxas/flake_celery

Automatic merge from submit-queue

Add liveness probe to the flower rc in order to fix a flake

Fixes #27857 
@fejta @ixdy @timstclair @mwielgus
pull/6/head
k8s-merge-robot 2016-07-23 15:19:52 -07:00 committed by GitHub
commit 4fdde68f78
3 changed files with 413 additions and 401 deletions

View File

@ -272,6 +272,13 @@ spec:
resources:
limits:
cpu: 100m
livenessProbe:
httpGet:
# Path to probe; should be cheap, but representative of typical behavior
path: /
port: 80
initialDelaySeconds: 30
timeoutSeconds: 1
```
[Download example](flower-controller.yaml?raw=true)

View File

@ -18,3 +18,10 @@ spec:
resources:
limits:
cpu: 100m
livenessProbe:
httpGet:
# Path to probe; should be cheap, but representative of typical behavior
path: /
port: 80
initialDelaySeconds: 30
timeoutSeconds: 1

File diff suppressed because one or more lines are too long