You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- apiVersion: apiextensions.k8s.io/v1
- kind: CustomResourceDefinition
- metadata:
- annotations:
- controller-gen.kubebuilder.io/version: v0.15.0
- name: datasets.sedna.io
- spec:
- group: sedna.io
- names:
- kind: Dataset
- listKind: DatasetList
- plural: datasets
- singular: dataset
- scope: Namespaced
- versions:
- - name: v1alpha1
- schema:
- openAPIV3Schema:
- description: Dataset describes the data that a dataset resource should have
- properties:
- apiVersion:
- description: |-
- APIVersion defines the versioned schema of this representation of an object.
- Servers should convert recognized schemas to the latest internal value, and
- may reject unrecognized values.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
- type: string
- kind:
- description: |-
- Kind is a string value representing the REST resource this object represents.
- Servers may infer this from the endpoint the client submits requests to.
- Cannot be updated.
- In CamelCase.
- More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
- type: string
- metadata:
- type: object
- spec:
- description: DatasetSpec is a description of a dataset
- properties:
- credentialName:
- type: string
- format:
- type: string
- nodeName:
- type: string
- url:
- type: string
- required:
- - format
- - nodeName
- - url
- type: object
- status:
- description: |-
- DatasetStatus represents information about the status of a dataset
- including the time a dataset updated, and number of samples in a dataset
- properties:
- numberOfSamples:
- type: integer
- updateTime:
- format: date-time
- type: string
- required:
- - numberOfSamples
- type: object
- required:
- - spec
- type: object
- served: true
- storage: true
- subresources:
- status: {}
|