mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
33 lines
477 B
YAML
33 lines
477 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: nginx-a
|
|
namespace: default
|
|
annotations:
|
|
policy.lan/value: foo
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: nginx-b
|
|
namespace: default
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: nginx-c
|
|
namespace: default
|
|
annotations:
|
|
policy.lan/value: bar
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx
|