Commit 4fdde68f authored by k8s-merge-robot's avatar k8s-merge-robot Committed by GitHub

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
parents 17e31bac 5db3f6d2
......@@ -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)
......
......@@ -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
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment