mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 01:46:55 +00:00
23 lines
303 B
YAML
23 lines
303 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: test-pod-1
|
||
|
labels:
|
||
|
foo: bar
|
||
|
op: UPDATE
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: nginx:latest
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: test-pod-2
|
||
|
labels:
|
||
|
foo: bar
|
||
|
op: UPDATE
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|