k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/test/e2e/testing-manifests/storage-csi/any-volume-datasource/crd/hello-populator-crd.yaml (about)

     1  apiVersion: apiextensions.k8s.io/v1
     2  kind: CustomResourceDefinition
     3  metadata:
     4    name: hellos.hello.example.com
     5  spec:
     6    group: hello.example.com
     7    names:
     8      kind: Hello
     9      listKind: HelloList
    10      plural: hellos
    11      singular: hello
    12    scope: Namespaced
    13    versions:
    14    - name: v1alpha1
    15      schema:
    16        openAPIV3Schema:
    17          description: Hello is a specification for a Hello resource
    18          properties:
    19            apiVersion:
    20              description: 'APIVersion defines the versioned schema of this representation
    21                of an object. Servers should convert recognized schemas to the latest
    22                internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
    23              type: string
    24            kind:
    25              description: 'Kind is a string value representing the REST resource this
    26                object represents. Servers may infer this from the endpoint the client
    27                submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
    28              type: string
    29            spec:
    30              description: HelloSpec is the spec for a Hello resource
    31              properties:
    32                fileContents:
    33                  type: string
    34                fileName:
    35                  type: string
    36              required:
    37              - fileContents
    38              - fileName
    39              type: object
    40          required:
    41          - spec
    42          type: object
    43      served: true
    44      storage: true
    45  status:
    46    acceptedNames:
    47      kind: ""
    48      plural: ""
    49    conditions: []
    50    storedVersions: []