mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
24 lines
350 B
YAML
24 lines
350 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: good-pod-1
|
||
|
namespace: default
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx1
|
||
|
image: nginx
|
||
|
args:
|
||
|
- sleep
|
||
|
- 1d
|
||
|
ports:
|
||
|
- hostPort: 0
|
||
|
containerPort: 80
|
||
|
initContainers:
|
||
|
- name: nginx2
|
||
|
image: nginx
|
||
|
args:
|
||
|
- sleep
|
||
|
- 1d
|
||
|
ports:
|
||
|
- hostPort: 0
|
||
|
containerPort: 8080
|