forked from aquasecurity/aqua-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aquasecurity.github.io_configauditreports.yaml
56 lines (56 loc) · 1.67 KB
/
aquasecurity.github.io_configauditreports.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
53
54
55
56
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: configauditreports.aquasecurity.github.io
labels:
app.kubernetes.io/managed-by: starboard
spec:
group: aquasecurity.github.io
names:
kind: ConfigAuditReport
listKind: ConfigAuditReportList
plural: configauditreports
singular: configauditreport
categories: []
shortNames:
- configaudit
scope: Namespaced
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
x-kubernetes-preserve-unknown-fields: true
type: object
additionalPrinterColumns:
- name: Scanner
type: string
description: The name of the config audit scanner
jsonPath: .report.scanner.name
- name: Age
type: date
description: The age of the report
jsonPath: .metadata.creationTimestamp
- name: Critial
type: integer
priority: 1
description: The number of failed checks with critial severity
jsonPath: .report.summary.Critial
- name: High
type: integer
priority: 1
description: The number of failed checks with high severity
jsonPath: .report.summary.highCount
- name: Medium
type: integer
priority: 1
description: The number of failed checks with medium severity
jsonPath: .report.summary.mediumCount
- name: Low
type: integer
priority: 1
description: The number of failed checks with low severity
jsonPath: .report.summary.lowCount
served: true
storage: true
subresources:
status: {}