github.com/argoproj/argo-cd/v3@v3.2.1/test/e2e/testdata/crd-version-differences/crd-v1alpha1.yaml (about) 1 apiVersion: apiextensions.k8s.io/v1 2 kind: CustomResourceDefinition 3 metadata: 4 name: fakes.argoproj.io 5 spec: 6 conversion: 7 strategy: None 8 group: argoproj.io 9 names: 10 kind: Fake 11 listKind: FakeList 12 plural: fakes 13 singular: fake 14 scope: Namespaced 15 versions: 16 - name: v1alpha1 17 served: true 18 storage: true 19 schema: 20 openAPIV3Schema: 21 type: object 22 properties: 23 apiVersion: 24 type: string 25 kind: 26 type: string 27 metadata: 28 type: object 29 spec: 30 type: object 31 properties: 32 cpu: 33 type: string 34 memory: 35 type: string