mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 09:26:54 +00:00
19 lines
328 B
YAML
19 lines
328 B
YAML
|
apiVersion: v1
|
||
|
kind: PodTemplate
|
||
|
metadata:
|
||
|
name: nginx-test
|
||
|
labels:
|
||
|
app: nginx
|
||
|
originalLabel: isHere
|
||
|
template:
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: redis
|
||
|
image: redis
|
||
|
ports:
|
||
|
- containerPort: 80
|
||
|
protocol: TCP
|
||
|
restartPolicy: Always
|
||
|
terminationGracePeriodSeconds: 30
|
||
|
dnsPolicy: ClusterFirst
|