cloudflare/argo-tunnel-examples

What's the reason your liveness check interval is 10 seconds?

gajus opened this issue · 0 comments

gajus commented

In this example:

livenessProbe:
httpGet:
# Cloudflared has a /ready endpoint which returns 200 if and only if
# it has an active connection to the edge.
path: /ready
port: 2000
failureThreshold: 1
initialDelaySeconds: 10
periodSeconds: 10

Wouldn't this result in a potential 10 second outage?

Is there a reason it is not set to 1?