mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
19 lines
No EOL
450 B
YAML
19 lines
No EOL
450 B
YAML
apiVersion: kyverno.io/v1alpha1
|
|
kind: Policy
|
|
metadata:
|
|
name: set-image-pull-policy
|
|
spec:
|
|
rules:
|
|
- name: set-image-pull-policy
|
|
resource:
|
|
kinds:
|
|
- Deployment
|
|
mutate:
|
|
overlay:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
# if the image tag is latest, set the imagePullPolicy to Always
|
|
- (image): "*:latest"
|
|
imagePullPolicy: "IfNotPresent" |