k8s-samples/CKA_Course/pods/health/liveness-http.yaml
2022-08-16 21:59:58 -05:00

14 lines
241 B
YAML

apiVersion: v1
kind: Pod
metadata:
name: liveness-pod-http
spec:
containers:
- name: nginx
image: nginx:1.19.1
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 5
periodSeconds: 5