k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/hack/testdata/CRD/example-crd-1-namespaced.yaml (about)

     1  apiVersion: apiextensions.k8s.io/v1
     2  kind: CustomResourceDefinition
     3  metadata:
     4    name: examples.test.com
     5  spec:
     6    group: test.com
     7    scope: Namespaced
     8    versions:
     9      - name: v1
    10        served: true
    11        storage: true
    12        schema:
    13          openAPIV3Schema:
    14            type: object
    15            properties:
    16              spec:
    17                type: object
    18                properties:
    19                  test:
    20                    type: string
    21    names:
    22      plural: examples
    23      singular: example
    24      kind: Example