Allow optional configuration of liveness/readyness checks.
Should have sensible defaults.
initial_delay_seconds: 10 # Number of seconds after the container has started before liveness probes are initiated.
period_seconds: 10 # How often (in seconds) to perform the probe.
success_threshold: 1 # Minimum consecutive successes for the probe to be considered successful after having failed.
timeout_seconds: 1 # Number of seconds after which the probe times out.
Allow optional configuration of liveness/readyness checks. Should have sensible defaults.