mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
* fix: return policies with either audit or enforce rules from the cache Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * feat: introduce validationFailureAction under verifyImage rules Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * feat: add chainsaw tests Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> * fix Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> --------- Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com> Co-authored-by: shuting <shuting@nirmata.com>
69 lines
1.7 KiB
YAML
69 lines
1.7 KiB
YAML
apiVersion: kyverno.io/v1
|
|
kind: ClusterPolicy
|
|
metadata:
|
|
name: restrict-image-registries
|
|
spec:
|
|
admission: true
|
|
background: true
|
|
rules:
|
|
- match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- Pod
|
|
name: validate-registries
|
|
skipBackgroundRequests: true
|
|
validate:
|
|
message: Images may only come from our internal enterprise registry.
|
|
pattern:
|
|
spec:
|
|
containers:
|
|
- image: registry.domain.com/*
|
|
validationFailureAction: Enforce
|
|
status:
|
|
autogen:
|
|
rules:
|
|
- match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- DaemonSet
|
|
- Deployment
|
|
- Job
|
|
- ReplicaSet
|
|
- ReplicationController
|
|
- StatefulSet
|
|
name: autogen-validate-registries
|
|
skipBackgroundRequests: true
|
|
validate:
|
|
message: Images may only come from our internal enterprise registry.
|
|
pattern:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- image: registry.domain.com/*
|
|
validationFailureAction: Enforce
|
|
- match:
|
|
any:
|
|
- resources:
|
|
kinds:
|
|
- CronJob
|
|
name: autogen-cronjob-validate-registries
|
|
skipBackgroundRequests: true
|
|
validate:
|
|
message: Images may only come from our internal enterprise registry.
|
|
pattern:
|
|
spec:
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- image: registry.domain.com/*
|
|
validationFailureAction: Enforce
|
|
conditions:
|
|
- message: Ready
|
|
reason: Succeeded
|
|
status: "True"
|
|
type: Ready
|