github.com/oam-dev/kubevela@v1.9.11/test/e2e-multicluster-test/testdata/kube/sample-crd.yaml (about) 1 apiVersion: apiextensions.k8s.io/v1 2 kind: CustomResourceDefinition 3 metadata: 4 name: foos.sample.custom.io 5 spec: 6 group: sample.custom.io 7 versions: 8 - name: v1alpha1 9 served: true 10 storage: true 11 schema: 12 # schema used for validation 13 openAPIV3Schema: 14 type: object 15 properties: 16 spec: 17 type: object 18 properties: 19 key: 20 type: string 21 names: 22 kind: Foo 23 plural: foos 24 scope: Namespaced