mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
16 lines
No EOL
492 B
YAML
16 lines
No EOL
492 B
YAML
apiVersion: policy.nirmata.io/v1alpha1
|
|
kind: Policy
|
|
metadata:
|
|
name: image-pull-policy
|
|
spec:
|
|
rules:
|
|
- name: image-pull-policy
|
|
message: "Image tag ':latest' requires imagePullPolicy 'Always'"
|
|
resource:
|
|
kind: Deployment
|
|
overlay:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- image: "(*:latest)" # select images which end with :latest
|
|
imagePullPolicy: "Always" # ensure that the imagePullPolicy is "Always" |