mirror of https://git.rancher.io/charts
41 lines
915 B
YAML
41 lines
915 B
YAML
|
apiVersion: apiextensions.k8s.io/v1beta1
|
||
|
kind: CustomResourceDefinition
|
||
|
metadata:
|
||
|
name: clusterscanreports.cis.cattle.io
|
||
|
spec:
|
||
|
additionalPrinterColumns:
|
||
|
- JSONPath: .spec.lastRunTimestamp
|
||
|
name: LastRunTimestamp
|
||
|
type: string
|
||
|
- JSONPath: .spec.benchmarkVersion
|
||
|
name: BenchmarkVersion
|
||
|
type: string
|
||
|
group: cis.cattle.io
|
||
|
names:
|
||
|
kind: ClusterScanReport
|
||
|
plural: clusterscanreports
|
||
|
scope: Cluster
|
||
|
subresources:
|
||
|
status: {}
|
||
|
validation:
|
||
|
openAPIV3Schema:
|
||
|
properties:
|
||
|
spec:
|
||
|
properties:
|
||
|
benchmarkVersion:
|
||
|
nullable: true
|
||
|
type: string
|
||
|
lastRunTimestamp:
|
||
|
nullable: true
|
||
|
type: string
|
||
|
reportJSON:
|
||
|
nullable: true
|
||
|
type: string
|
||
|
type: object
|
||
|
type: object
|
||
|
version: v1
|
||
|
versions:
|
||
|
- name: v1
|
||
|
served: true
|
||
|
storage: true
|