forked from open-cluster-management-io/policy-collection
-
Notifications
You must be signed in to change notification settings - Fork 30
/
policy-check-reports.yaml
52 lines (51 loc) · 1.81 KB
/
policy-check-reports.yaml
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
# This policy looks for PolicyReport resources that contain failures.
# These failures mean a compliance action was taken and there are resources that
# do not meet the compliance rules.
#
# Set remediationAction to "inform" to receive a list of PolicyReport
# resources that have a status of "fail".
apiVersion: policy.open-cluster-management.io/v1
kind: Policy
metadata:
name: policy-check-reports
annotations:
policy.open-cluster-management.io/standards: NIST 800-53
policy.open-cluster-management.io/categories: CM Configuration Management
policy.open-cluster-management.io/controls: CM-2 Baseline Configuration
spec:
remediationAction: inform
disabled: false
policy-templates:
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: policy-check-reports
spec:
remediationAction: inform # will be overridden by remediationAction in parent policy
severity: low
namespaceSelector:
exclude: ["kube-*"]
include: ["*"]
object-templates:
- complianceType: mustnothave
objectDefinition:
apiVersion: wgpolicyk8s.io/v1alpha1
kind: PolicyReport
results:
- status: fail
- objectDefinition:
apiVersion: policy.open-cluster-management.io/v1
kind: ConfigurationPolicy
metadata:
name: policy-check-cluster-reports
spec:
remediationAction: inform
severity: low
object-templates:
- complianceType: mustnothave
objectDefinition:
apiVersion: wgpolicyk8s.io/v1alpha1
kind: ClusterPolicyReport
results:
- status: fail