apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: name: provisions.edge.ncr.com annotations: controller-gen.kubebuilder.io/version: (unknown) spec: group: edge.ncr.com names: kind: Provision listKind: ProvisionList plural: provisions singular: provision scope: Namespaced versions: - name: v1alpha1 schema: openAPIV3Schema: type: object description: Provision is the Schema for the provisions API properties: apiVersion: type: string 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' kind: type: string 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' metadata: type: object spec: type: object description: ProvisionSpec defines the desired state of Provision properties: image: type: string imageProject: type: string description: MachineType string `json:"machineType"` machineSpec: type: object properties: diskSizeGb: type: integer format: int64 memory: type: string numCPUs: type: string provider: type: object description: SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace properties: name: type: string description: name is unique within a namespace to reference a secret resource. namespace: type: string description: namespace defines the space within which the secret name must be unique. tags: type: array items: type: string windowsSpec: type: object description: WindowsSpec - used for setting MetadataList in a Windows VM properties: startUpScriptURL: type: string sysPrepScriptURL: type: string zone: type: string required: - image - imageProject - provider - zone status: type: object description: ProvisionStatus defines the observed state of Provision properties: currentStatus: type: string externalIP: type: string internalIP: type: string statusMessage: type: string statusSource: type: string required: - currentStatus - externalIP - internalIP - statusMessage - statusSource served: true storage: true subresources: status: {}