apiVersion: v1
kind: Pod
metadata:
name: nginx-httpget-pod
namespace: default
spec:
containers:
- name: nginx-httpget-container
image: nginx
imagePullPolicy: IfNotPresent
ports:
- name: http
containerPort: 80
livenessProbe:
httpGet:
port: http
path: /index.html
initialDelaySeconds: 1
periodSeconds: 3