Kubernetes - Health Checks and Probes
Which YAML snippet correctly configures an HTTP liveness probe for a Kubernetes container that checks the
/healthz endpoint on port 8080 every 10 seconds?/healthz endpoint on port 8080 every 10 seconds?livenessProbe with an httpGet action./healthz path on port 8080, which is correctly specified in livenessProbe:
httpGet:
path: /healthz
port: 8080
periodSeconds: 10.periodSeconds: 10, matching the requirement to check every 10 seconds.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions