-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclusterPolicy.yml
55 lines (55 loc) · 1.79 KB
/
clusterPolicy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
apiVersion: kyverno.io/v1
kind: ClusterPolicy
metadata:
annotations:
meta.helm.sh/release-name: kyverno-rules
meta.helm.sh/release-namespace: kyverno
pod-policies.kyverno.io/autogen-controllers: Deployment,StatefulSet
policies.kyverno.io/category: Sample
policies.kyverno.io/description: Using the Cosign project, OCI images may be signed
to ensure supply chain security is maintained. Those signatures can be verified
before pulling into a cluster. This policy checks the signature of an image
repo called ghcr.io/kyverno/test-verify-image to ensure it has been signed by
verifying its signature against the provided public key. This policy serves
as an illustration for how to configure a similar rule and will require replacing
with your image(s) and keys.
policies.kyverno.io/minversion: 1.4.2
policies.kyverno.io/severity: medium
policies.kyverno.io/subject: Deployment, StatfulSet
policies.kyverno.io/title: Verify Image
name: verify-image
spec:
background: false
failurePolicy: Fail
rules:
- exclude:
any:
- resources:
namespaces:
- kube-system
- kube-node-lease
- kube-public
resources: {}
generate:
clone: {}
match:
any:
- resources:
kinds:
- Deployment
- StatefulSet
resources: {}
mutate: {}
name: verify-image
validate: {}
verifyImages:
- image: registry.domain.com*
key: |-
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEFN8gGjQua2g8N+aLx3Eff+/j5HxL
bV+H2z50/0A4d8XyMUvizPQBtcgei43pqLj1850m3wSwI08z2+6zT1QaEg==
-----END PUBLIC KEY-----
mutateDigest: false
required: true
verifyDigest: false
validationFailureAction: enforce