...

Text file src/sigs.k8s.io/controller-runtime/pkg/envtest/testdata/multiplecrds.yaml

Documentation: sigs.k8s.io/controller-runtime/pkg/envtest/testdata

     1---
     2apiVersion: apiextensions.k8s.io/v1
     3kind: CustomResourceDefinition
     4metadata:
     5  name: captains.crew.example.com
     6spec:
     7  group: crew.example.com
     8  names:
     9    kind: Captain
    10    plural: captains
    11  scope: Namespaced
    12  versions:
    13    - name: "v1beta1"
    14      storage: true
    15      served: true
    16      schema:
    17        openAPIV3Schema:
    18          type: object
    19---
    20apiVersion: apiextensions.k8s.io/v1
    21kind: CustomResourceDefinition
    22metadata:
    23  name: firstmates.crew.example.com
    24spec:
    25  group: crew.example.com
    26  names:
    27    kind: FirstMate
    28    plural: firstmates
    29  scope: Namespaced
    30  versions:
    31    - name: "v1beta1"
    32      storage: true
    33      served: true
    34      schema:
    35        openAPIV3Schema:
    36          type: object
    37---

View as plain text