wget outputs a file even in quiet mode. oops!
This commit is contained in:
parent
eb3389c7e7
commit
fc8367a072
|
@ -140,21 +140,21 @@ external-secrets:
|
|||
protocol: TCP
|
||||
livenessProbe:
|
||||
exec:
|
||||
command: ["wget", "-q", "http://127.0.0.1:8087/sync", "--post-data=''"]
|
||||
command: ["wget", "-q", "-O", "-", "http://127.0.0.1:8087/sync", "--post-data=''"]
|
||||
initialDelaySeconds: 20
|
||||
failureThreshold: 3
|
||||
timeoutSeconds: 1
|
||||
periodSeconds: 120
|
||||
readinessProbe:
|
||||
exec:
|
||||
command: ["wget", "-q", "http://127.0.0.1:8087/status"]
|
||||
command: ["wget", "-q", "-O", "-", "http://127.0.0.1:8087/status"]
|
||||
initialDelaySeconds: 20
|
||||
failureThreshold: 3
|
||||
timeoutSeconds: 1
|
||||
periodSeconds: 10
|
||||
startupProbe:
|
||||
exec:
|
||||
command: ["wget", "-q", "http://127.0.0.1:8087/status"]
|
||||
command: ["wget", "-q", "-O", "-", "http://127.0.0.1:8087/status"]
|
||||
initialDelaySeconds: 10
|
||||
failureThreshold: 30
|
||||
timeoutSeconds: 1
|
||||
|
|
Loading…
Reference in New Issue
Block a user