|
| 1 | +apiVersion: apiextensions.k8s.io/v1 |
| 2 | +kind: CustomResourceDefinition |
| 3 | +metadata: |
| 4 | + annotations: |
| 5 | + controller-gen.kubebuilder.io/version: v0.6.1 |
| 6 | + creationTimestamp: null |
| 7 | + name: availabilityzones.topology.tanzu.vmware.com |
| 8 | +spec: |
| 9 | + group: topology.tanzu.vmware.com |
| 10 | + names: |
| 11 | + kind: AvailabilityZone |
| 12 | + listKind: AvailabilityZoneList |
| 13 | + plural: availabilityzones |
| 14 | + shortNames: |
| 15 | + - az |
| 16 | + singular: availabilityzone |
| 17 | + scope: Cluster |
| 18 | + versions: |
| 19 | + - name: v1alpha1 |
| 20 | + schema: |
| 21 | + openAPIV3Schema: |
| 22 | + description: AvailabilityZone is the schema for the AvailabilityZone resource |
| 23 | + for the vSphere topology 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: AvailabilityZoneSpec defines the desired state of AvailabilityZone. |
| 39 | + properties: |
| 40 | + clusterComputeResourceMoIDs: |
| 41 | + description: ClusterComputeResourceMoIDs are the managed object IDs |
| 42 | + of the vSphere ClusterComputeResources represented by this availability |
| 43 | + zone. |
| 44 | + items: |
| 45 | + type: string |
| 46 | + type: array |
| 47 | + clusterComputeResourceMoId: |
| 48 | + description: ClusterComputeResourceMoId is the managed object ID of |
| 49 | + the vSphere ClusterComputeResource represented by this availability |
| 50 | + zone. |
| 51 | + type: string |
| 52 | + namespaces: |
| 53 | + additionalProperties: |
| 54 | + description: NamespaceInfo contains identifying information about |
| 55 | + the vSphere resources used to represent a Kubernetes namespace |
| 56 | + on individual vSphere Zones. |
| 57 | + properties: |
| 58 | + folderMoId: |
| 59 | + description: FolderMoId is the managed object ID of the vSphere |
| 60 | + Folder for a Namespace. Folders are global and not per-vSphere |
| 61 | + Cluster, but the FolderMoId is stored here, alongside the |
| 62 | + PoolMoId for convenience. |
| 63 | + type: string |
| 64 | + poolMoIDs: |
| 65 | + description: PoolMoIDs are the managed object ID of the vSphere |
| 66 | + ResourcePools for a Namespace in an individual vSphere Zone. |
| 67 | + A zone may be comprised of multiple ResourcePools. |
| 68 | + items: |
| 69 | + type: string |
| 70 | + type: array |
| 71 | + poolMoId: |
| 72 | + description: PoolMoId is the managed object ID of the vSphere |
| 73 | + ResourcePool for a Namespace on an individual vSphere Cluster. |
| 74 | + type: string |
| 75 | + type: object |
| 76 | + description: Namespaces is a map that enables querying information |
| 77 | + about the vSphere objects that make up a Kubernetes Namespace based |
| 78 | + on its name. |
| 79 | + type: object |
| 80 | + type: object |
| 81 | + status: |
| 82 | + description: AvailabilityZoneStatus defines the observed state of AvailabilityZone. |
| 83 | + type: object |
| 84 | + type: object |
| 85 | + served: true |
| 86 | + storage: true |
| 87 | + subresources: |
| 88 | + status: {} |
| 89 | +status: |
| 90 | + acceptedNames: |
| 91 | + kind: "" |
| 92 | + plural: "" |
| 93 | + conditions: [] |
| 94 | + storedVersions: [] |
0 commit comments