mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
21 lines
No EOL
307 B
YAML
21 lines
No EOL
307 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: test-require-image-tag-fail
|
|
labels:
|
|
app: app
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: test-validate-image-tag-ignore
|
|
labels:
|
|
app: app
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:latest |