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 protocol: TCP
livenessProbe: livenessProbe:
exec: 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 initialDelaySeconds: 20
failureThreshold: 3 failureThreshold: 3
timeoutSeconds: 1 timeoutSeconds: 1
periodSeconds: 120 periodSeconds: 120
readinessProbe: readinessProbe:
exec: exec:
command: ["wget", "-q", "http://127.0.0.1:8087/status"] command: ["wget", "-q", "-O", "-", "http://127.0.0.1:8087/status"]
initialDelaySeconds: 20 initialDelaySeconds: 20
failureThreshold: 3 failureThreshold: 3
timeoutSeconds: 1 timeoutSeconds: 1
periodSeconds: 10 periodSeconds: 10
startupProbe: startupProbe:
exec: exec:
command: ["wget", "-q", "http://127.0.0.1:8087/status"] command: ["wget", "-q", "-O", "-", "http://127.0.0.1:8087/status"]
initialDelaySeconds: 10 initialDelaySeconds: 10
failureThreshold: 30 failureThreshold: 30
timeoutSeconds: 1 timeoutSeconds: 1