wget outputs a file even in quiet mode. oops!

This commit is contained in:
James Andariese 2023-07-12 11:47:35 -05:00
parent eb3389c7e7
commit fc8367a072

View File

@ -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