| Giorgi Lekveishvili | ec0f3bb | 2023-06-19 18:46:53 +0400 | [diff] [blame] | 1 | {{ if .Values.installCRDs }} |
| 2 | apiVersion: apiextensions.k8s.io/v1 |
| 3 | kind: CustomResourceDefinition |
| 4 | metadata: |
| 5 | annotations: |
| 6 | controller-gen.kubebuilder.io/version: v0.9.2 |
| 7 | creationTimestamp: null |
| 8 | name: resourcerenderers.dodo.cloud.dodo.cloud |
| 9 | spec: |
| 10 | group: dodo.cloud.dodo.cloud |
| 11 | names: |
| 12 | kind: ResourceRenderer |
| 13 | listKind: ResourceRendererList |
| 14 | plural: resourcerenderers |
| 15 | singular: resourcerenderer |
| 16 | scope: Namespaced |
| 17 | versions: |
| 18 | - name: v1 |
| 19 | schema: |
| 20 | openAPIV3Schema: |
| 21 | description: ResourceRenderer is the Schema for the resourcerenderers API |
| 22 | properties: |
| 23 | apiVersion: |
| 24 | description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' |
| 25 | type: string |
| 26 | kind: |
| 27 | description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client 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 | metadata: |
| 30 | type: object |
| 31 | spec: |
| 32 | description: ResourceRendererSpec defines the desired state of ResourceRenderer |
| 33 | properties: |
| 34 | resourceTemplate: |
| 35 | type: string |
| 36 | secretName: |
| 37 | description: Foo is an example field of ResourceRenderer. Edit resourcerenderer_types.go to remove/update |
| 38 | type: string |
| 39 | secretNamespace: |
| 40 | type: string |
| 41 | type: object |
| 42 | status: |
| 43 | description: ResourceRendererStatus defines the observed state of ResourceRenderer |
| 44 | properties: |
| 45 | ready: |
| 46 | description: 'INSERT ADDITIONAL STATUS FIELD - define observed state of cluster Important: Run "make" to regenerate code after modifying this file' |
| 47 | type: boolean |
| 48 | type: object |
| 49 | type: object |
| 50 | served: true |
| 51 | storage: true |
| 52 | subresources: |
| 53 | status: {} |
| 54 | {{ end }} |