|
| 1 | +--- |
| 2 | +apiVersion: apiextensions.k8s.io/v1 |
| 3 | +kind: CustomResourceDefinition |
| 4 | +metadata: |
| 5 | + annotations: |
| 6 | + controller-gen.kubebuilder.io/version: v0.13.0 |
| 7 | + name: ibmvpcclustertemplates.infrastructure.cluster.x-k8s.io |
| 8 | +spec: |
| 9 | + group: infrastructure.cluster.x-k8s.io |
| 10 | + names: |
| 11 | + categories: |
| 12 | + - cluster-api |
| 13 | + kind: IBMVPCClusterTemplate |
| 14 | + listKind: IBMVPCClusterTemplateList |
| 15 | + plural: ibmvpcclustertemplates |
| 16 | + shortNames: |
| 17 | + - ibmvpcct |
| 18 | + singular: ibmvpcclustertemplate |
| 19 | + scope: Namespaced |
| 20 | + versions: |
| 21 | + - additionalPrinterColumns: |
| 22 | + - description: Time duration since creation of IBMVPCClusterTemplate |
| 23 | + jsonPath: .metadata.creationTimestamp |
| 24 | + name: Age |
| 25 | + type: date |
| 26 | + name: v1beta2 |
| 27 | + schema: |
| 28 | + openAPIV3Schema: |
| 29 | + description: IBMVPCClusterTemplate is the Schema for the ibmvpcclustertemplates |
| 30 | + API. |
| 31 | + properties: |
| 32 | + apiVersion: |
| 33 | + description: 'APIVersion defines the versioned schema of this representation |
| 34 | + of an object. Servers should convert recognized schemas to the latest |
| 35 | + internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' |
| 36 | + type: string |
| 37 | + kind: |
| 38 | + description: 'Kind is a string value representing the REST resource this |
| 39 | + object represents. Servers may infer this from the endpoint the client |
| 40 | + submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' |
| 41 | + type: string |
| 42 | + metadata: |
| 43 | + type: object |
| 44 | + spec: |
| 45 | + description: IBMVPCClusterTemplateSpec defines the desired state of IBMVPCClusterTemplate. |
| 46 | + properties: |
| 47 | + template: |
| 48 | + description: IBMVPCClusterTemplateResource describes the data needed |
| 49 | + to create an IBMVPCCluster from a template. |
| 50 | + properties: |
| 51 | + metadata: |
| 52 | + description: 'Standard object''s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata' |
| 53 | + properties: |
| 54 | + annotations: |
| 55 | + additionalProperties: |
| 56 | + type: string |
| 57 | + description: 'Annotations is an unstructured key value map |
| 58 | + stored with a resource that may be set by external tools |
| 59 | + to store and retrieve arbitrary metadata. They are not queryable |
| 60 | + and should be preserved when modifying objects. More info: |
| 61 | + http://kubernetes.io/docs/user-guide/annotations' |
| 62 | + type: object |
| 63 | + labels: |
| 64 | + additionalProperties: |
| 65 | + type: string |
| 66 | + description: 'Map of string keys and values that can be used |
| 67 | + to organize and categorize (scope and select) objects. May |
| 68 | + match selectors of replication controllers and services. |
| 69 | + More info: http://kubernetes.io/docs/user-guide/labels' |
| 70 | + type: object |
| 71 | + type: object |
| 72 | + spec: |
| 73 | + description: IBMVPCClusterSpec defines the desired state of IBMVPCCluster. |
| 74 | + properties: |
| 75 | + controlPlaneEndpoint: |
| 76 | + description: ControlPlaneEndpoint represents the endpoint |
| 77 | + used to communicate with the control plane. |
| 78 | + properties: |
| 79 | + host: |
| 80 | + description: The hostname on which the API server is serving. |
| 81 | + type: string |
| 82 | + port: |
| 83 | + description: The port on which the API server is serving. |
| 84 | + format: int32 |
| 85 | + type: integer |
| 86 | + required: |
| 87 | + - host |
| 88 | + - port |
| 89 | + type: object |
| 90 | + controlPlaneLoadBalancer: |
| 91 | + description: ControlPlaneLoadBalancer is optional configuration |
| 92 | + for customizing control plane behavior. |
| 93 | + properties: |
| 94 | + name: |
| 95 | + description: Name sets the name of the VPC load balancer. |
| 96 | + maxLength: 63 |
| 97 | + pattern: ^([a-z]|[a-z][-a-z0-9]*[a-z0-9])$ |
| 98 | + type: string |
| 99 | + type: object |
| 100 | + region: |
| 101 | + description: The IBM Cloud Region the cluster lives in. |
| 102 | + type: string |
| 103 | + resourceGroup: |
| 104 | + description: The VPC resources should be created under the |
| 105 | + resource group. |
| 106 | + type: string |
| 107 | + vpc: |
| 108 | + description: The Name of VPC. |
| 109 | + type: string |
| 110 | + zone: |
| 111 | + description: The Name of availability zone. |
| 112 | + type: string |
| 113 | + required: |
| 114 | + - region |
| 115 | + - resourceGroup |
| 116 | + type: object |
| 117 | + required: |
| 118 | + - spec |
| 119 | + type: object |
| 120 | + type: object |
| 121 | + type: object |
| 122 | + served: true |
| 123 | + storage: true |
| 124 | + subresources: {} |
0 commit comments