mirror of https://git.rancher.io/charts
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: clusterscanbenchmarks.cis.cattle.io
|
|
spec:
|
|
group: cis.cattle.io
|
|
names:
|
|
kind: ClusterScanBenchmark
|
|
plural: clusterscanbenchmarks
|
|
scope: Cluster
|
|
versions:
|
|
- name: v1
|
|
served: true
|
|
storage: true
|
|
additionalPrinterColumns:
|
|
- jsonPath: .spec.clusterProvider
|
|
name: ClusterProvider
|
|
type: string
|
|
- jsonPath: .spec.minKubernetesVersion
|
|
name: MinKubernetesVersion
|
|
type: string
|
|
- jsonPath: .spec.maxKubernetesVersion
|
|
name: MaxKubernetesVersion
|
|
type: string
|
|
- jsonPath: .spec.customBenchmarkConfigMapName
|
|
name: customBenchmarkConfigMapName
|
|
type: string
|
|
- jsonPath: .spec.customBenchmarkConfigMapNamespace
|
|
name: customBenchmarkConfigMapNamespace
|
|
type: string
|
|
subresources:
|
|
status: {}
|
|
schema:
|
|
openAPIV3Schema:
|
|
properties:
|
|
spec:
|
|
properties:
|
|
clusterProvider:
|
|
nullable: true
|
|
type: string
|
|
customBenchmarkConfigMapName:
|
|
nullable: true
|
|
type: string
|
|
customBenchmarkConfigMapNamespace:
|
|
nullable: true
|
|
type: string
|
|
maxKubernetesVersion:
|
|
nullable: true
|
|
type: string
|
|
minKubernetesVersion:
|
|
nullable: true
|
|
type: string
|
|
type: object
|
|
type: object
|