mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
* chore: bump chainsaw Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * more template use Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * v0.2.10 Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * go mod Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> --------- Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
71 lines
1.7 KiB
YAML
71 lines
1.7 KiB
YAML
apiVersion: kyverno.io/v1
|
|
kind: ClusterPolicy
|
|
metadata:
|
|
name: disallow-latest-tag
|
|
status:
|
|
autogen:
|
|
rules:
|
|
- match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- Deployment
|
|
name: autogen-require-image-tag
|
|
validate:
|
|
failureAction: Audit
|
|
message: An image tag is required.
|
|
pattern:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- image: '*:*'
|
|
- match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- CronJob
|
|
name: autogen-cronjob-require-image-tag
|
|
validate:
|
|
failureAction: Audit
|
|
message: An image tag is required.
|
|
pattern:
|
|
spec:
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- image: '*:*'
|
|
- match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- Deployment
|
|
name: autogen-validate-image-tag
|
|
validate:
|
|
failureAction: Audit
|
|
message: Using a mutable image tag e.g. 'latest' is not allowed.
|
|
pattern:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- image: '!*:latest'
|
|
- match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- CronJob
|
|
name: autogen-cronjob-validate-image-tag
|
|
validate:
|
|
failureAction: Audit
|
|
message: Using a mutable image tag e.g. 'latest' is not allowed.
|
|
pattern:
|
|
spec:
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- image: '!*:latest'
|