mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 07:57:07 +00:00
24 lines
No EOL
355 B
YAML
24 lines
No EOL
355 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: good-pod-2
|
|
namespace: staging-ns-3
|
|
spec:
|
|
containers:
|
|
- name: nginx1
|
|
image: nginx
|
|
args:
|
|
- sleep
|
|
- 1d
|
|
ports:
|
|
- hostPort: 10
|
|
containerPort: 80
|
|
initContainers:
|
|
- name: nginx2
|
|
image: nginx
|
|
args:
|
|
- sleep
|
|
- 1d
|
|
ports:
|
|
- hostPort: 20
|
|
containerPort: 80 |