|
| 1 | + |
| 2 | +--- |
| 3 | +apiVersion: apiextensions.k8s.io/v1 |
| 4 | +kind: CustomResourceDefinition |
| 5 | +metadata: |
| 6 | + annotations: |
| 7 | + controller-gen.kubebuilder.io/version: v0.6.1 |
| 8 | + creationTimestamp: null |
| 9 | + name: dockerclustertemplates.infrastructure.cluster.x-k8s.io |
| 10 | +spec: |
| 11 | + group: infrastructure.cluster.x-k8s.io |
| 12 | + names: |
| 13 | + kind: DockerClusterTemplate |
| 14 | + listKind: DockerClusterTemplateList |
| 15 | + plural: dockerclustertemplates |
| 16 | + singular: dockerclustertemplate |
| 17 | + scope: Namespaced |
| 18 | + versions: |
| 19 | + - name: v1alpha4 |
| 20 | + schema: |
| 21 | + openAPIV3Schema: |
| 22 | + description: DockerClusterTemplate is the Schema for the dockerclustertemplates |
| 23 | + API. |
| 24 | + properties: |
| 25 | + apiVersion: |
| 26 | + description: 'APIVersion defines the versioned schema of this representation |
| 27 | + of an object. Servers should convert recognized schemas to the latest |
| 28 | + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' |
| 29 | + type: string |
| 30 | + kind: |
| 31 | + description: 'Kind is a string value representing the REST resource this |
| 32 | + object represents. Servers may infer this from the endpoint the client |
| 33 | + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 34 | + type: string |
| 35 | + metadata: |
| 36 | + type: object |
| 37 | + spec: |
| 38 | + description: DockerClusterTemplateSpec defines the desired state of DockerClusterTemplate. |
| 39 | + properties: |
| 40 | + template: |
| 41 | + description: DockerClusterTemplateResource describes the data needed |
| 42 | + to create a DockerCluster from a template. |
| 43 | + properties: |
| 44 | + spec: |
| 45 | + description: DockerClusterSpec defines the desired state of DockerCluster. |
| 46 | + properties: |
| 47 | + controlPlaneEndpoint: |
| 48 | + description: ControlPlaneEndpoint represents the endpoint |
| 49 | + used to communicate with the control plane. |
| 50 | + properties: |
| 51 | + host: |
| 52 | + description: Host is the hostname on which the API server |
| 53 | + is serving. |
| 54 | + type: string |
| 55 | + port: |
| 56 | + description: Port is the port on which the API server |
| 57 | + is serving. |
| 58 | + type: integer |
| 59 | + required: |
| 60 | + - host |
| 61 | + - port |
| 62 | + type: object |
| 63 | + failureDomains: |
| 64 | + additionalProperties: |
| 65 | + description: FailureDomainSpec is the Schema for Cluster |
| 66 | + API failure domains. It allows controllers to understand |
| 67 | + how many failure domains a cluster can optionally span |
| 68 | + across. |
| 69 | + properties: |
| 70 | + attributes: |
| 71 | + additionalProperties: |
| 72 | + type: string |
| 73 | + description: Attributes is a free form map of attributes |
| 74 | + an infrastructure provider might use or require. |
| 75 | + type: object |
| 76 | + controlPlane: |
| 77 | + description: ControlPlane determines if this failure |
| 78 | + domain is suitable for use by control plane machines. |
| 79 | + type: boolean |
| 80 | + type: object |
| 81 | + description: FailureDomains are not usulaly defined on the |
| 82 | + spec. The docker provider is special since failure domains |
| 83 | + don't mean anything in a local docker environment. Instead, |
| 84 | + the docker cluster controller will simply copy these into |
| 85 | + the Status and allow the Cluster API controllers to do what |
| 86 | + they will with the defined failure domains. |
| 87 | + type: object |
| 88 | + type: object |
| 89 | + required: |
| 90 | + - spec |
| 91 | + type: object |
| 92 | + required: |
| 93 | + - template |
| 94 | + type: object |
| 95 | + type: object |
| 96 | + served: true |
| 97 | + storage: true |
| 98 | +status: |
| 99 | + acceptedNames: |
| 100 | + kind: "" |
| 101 | + plural: "" |
| 102 | + conditions: [] |
| 103 | + storedVersions: [] |
0 commit comments