| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +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: headscaleusers.headscale.dodo.cloud |
| 9 | spec: |
| 10 | group: headscale.dodo.cloud |
| 11 | names: |
| 12 | kind: HeadscaleUser |
| 13 | listKind: HeadscaleUserList |
| 14 | plural: headscaleusers |
| 15 | singular: headscaleuser |
| 16 | scope: Namespaced |
| 17 | versions: |
| 18 | - name: v1 |
| 19 | schema: |
| 20 | openAPIV3Schema: |
| 21 | description: HeadscaleUser is the Schema for the headscaleusers 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: HeadscaleUserSpec defines the desired state of HeadscaleUser |
| 33 | properties: |
| 34 | headscaleAddress: |
| 35 | type: string |
| 36 | name: |
| 37 | type: string |
| 38 | preAuthKey: |
| 39 | properties: |
| 40 | enabled: |
| 41 | type: boolean |
| 42 | secretName: |
| 43 | type: string |
| 44 | type: object |
| 45 | type: object |
| 46 | status: |
| 47 | description: HeadscaleUserStatus defines the observed state of HeadscaleUser |
| 48 | properties: |
| 49 | ready: |
| 50 | type: boolean |
| 51 | type: object |
| 52 | type: object |
| 53 | served: true |
| 54 | storage: true |
| 55 | subresources: |
| 56 | status: {} |
| 57 | {{ end }} |