12345678910111213141516171819 |
- apiVersion: v1
- kind: Pod
- metadata:
- name: nginx
- labels:
- name: nginx
- spec:
- containers:
- - name: nginx
- image: {{.NginxImage}}
- ports:
- - containerPort: 80
- readinessProbe:
- httpGet:
- path: /
- port: 80
- initialDelaySeconds: 5
- timeoutSeconds: 5
|