mirror of
https://github.com/kyverno/kyverno.git
synced 2025-04-14 00:06:45 +00:00
20 lines
No EOL
477 B
YAML
20 lines
No EOL
477 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:
|
|
# match images which end with :latest
|
|
- (image): "*:latest"
|
|
# set the imagePullPolicy to "Always"
|
|
imagePullPolicy: "Always" |