Commit 5db3f6d2 authored by Lucas Käldström's avatar Lucas Käldström

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

parent eaf3d3f7
...@@ -272,6 +272,13 @@ spec: ...@@ -272,6 +272,13 @@ spec:
resources: resources:
limits: limits:
cpu: 100m 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) [Download example](flower-controller.yaml?raw=true)
......
...@@ -18,3 +18,10 @@ spec: ...@@ -18,3 +18,10 @@ spec:
resources: resources:
limits: limits:
cpu: 100m 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