Kubernetes - Health Checks and Probes
Given this probe configuration snippet in a pod spec:
livenessProbe:
httpGet:
path: /status
port: 8080
initialDelaySeconds: 10
periodSeconds: 5
What will Kubernetes do after the pod starts?