14 lines
238 B
YAML
14 lines
238 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: readiness-pod
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:1.19.1
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 80
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|