Complete the code to set the initial delay for a liveness probe to 10 seconds.
livenessProbe:
initialDelaySeconds: [1]The initialDelaySeconds sets how long Kubernetes waits before starting the probe. Here, it is set to 10 seconds.
Complete the code to set the probe period to 5 seconds.
readinessProbe:
periodSeconds: [1]The periodSeconds defines how often the probe runs. Setting it to 5 means the probe runs every 5 seconds.
Fix the error in the probe timeout setting to 3 seconds.
startupProbe:
timeoutSeconds: [1]The timeoutSeconds defines how long to wait for the probe to respond. Setting it to 3 seconds means the probe must respond within 3 seconds.
Fill both blanks to set initial delay to 15 seconds and period to 10 seconds for a liveness probe.
livenessProbe: initialDelaySeconds: [1] periodSeconds: [2]
Here, initialDelaySeconds is set to 15 seconds to wait before starting probes, and periodSeconds is set to 10 seconds to run probes every 10 seconds.
Fill all three blanks to set startup probe with initial delay 20, period 5, and timeout 4 seconds.
startupProbe: initialDelaySeconds: [1] periodSeconds: [2] timeoutSeconds: [3]
The startup probe waits 20 seconds before starting, runs every 5 seconds, and times out after 4 seconds if no response.