1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 01:16:55 +00:00
kyverno/examples/Validate/check_image_version.yaml

17 lines
504 B
YAML
Raw Normal View History

apiVersion : kyverno.nirmata.io/v1alpha1
kind: Policy
metadata:
2019-05-21 00:46:37 -07:00
name: image-pull-policy
spec:
rules:
2019-05-21 00:46:37 -07:00
- name: image-pull-policy
message: "Image tag ':latest' requires imagePullPolicy 'Always'"
resource:
kinds:
- Deployment
2019-05-21 00:46:37 -07:00
overlay:
template:
spec:
containers:
- image: "(*:latest)" # select images which end with :latest
imagePullPolicy: "Always" # ensure that the imagePullPolicy is "Always"