forked from aquasecurity/starboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ciskubebenchreports.crd.yaml
45 lines (45 loc) · 1.06 KB
/
ciskubebenchreports.crd.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
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: ciskubebenchreports.aquasecurity.github.io
labels:
app.kubernetes.io/managed-by: starboard
spec:
group: aquasecurity.github.io
versions:
- name: v1alpha1
served: true
storage: true
scope: Cluster
names:
singular: ciskubebenchreport
plural: ciskubebenchreports
kind: CISKubeBenchReport
listKind: CISKubeBenchReportList
categories:
- all
shortNames:
- kubebench
additionalPrinterColumns:
- JSONPath: .report.scanner.name
type: string
name: Scanner
- JSONPath: .metadata.creationTimestamp
type: date
name: Age
- JSONPath: .report.summary.passCount
type: integer
name: Pass
priority: 1
- JSONPath: .report.summary.infoCount
type: integer
name: Info
priority: 1
- JSONPath: .report.summary.warnCount
type: integer
name: Warn
priority: 1
- JSONPath: .report.summary.failCount
type: integer
name: Fail
priority: 1