
This commit integrates the Azure provider to the Airship 2.0 project. It adds the following folders: - manifest/function/capz: This folder contains all manifests required for the integration of Azure provider. - manifest/function/k8scontrol-capz: This folder contains the base manifest for the Azure Workload cluster. - manifest/site/az-test-site: This folder contains the manifests used for initializing the CAPI and CAPZ components on the management cluster invoking "airshipctl cluster init" and manifests used for deploying a Workload cluster on the Azure Cloud by invoking the command "airshipctl phase apply azure". - tools/deployment/azure: provides the script shell that are used in the zuul gates and local test. Updated files: - zuul.d/project.yaml and zuul.d/jobs.yaml have been updated to include gates for validating the Azure provider integration. Change-Id: Icbdc7f6f42c159f48dd11e35626da3bc016f5487
96 lines
3.6 KiB
YAML
96 lines
3.6 KiB
YAML
|
|
---
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
annotations:
|
|
controller-gen.kubebuilder.io/version: v0.3.0
|
|
creationTimestamp: null
|
|
name: azuremanagedmachinepools.exp.infrastructure.cluster.x-k8s.io
|
|
spec:
|
|
group: exp.infrastructure.cluster.x-k8s.io
|
|
names:
|
|
categories:
|
|
- cluster-api
|
|
kind: AzureManagedMachinePool
|
|
listKind: AzureManagedMachinePoolList
|
|
plural: azuremanagedmachinepools
|
|
shortNames:
|
|
- ammp
|
|
singular: azuremanagedmachinepool
|
|
scope: Namespaced
|
|
versions:
|
|
- name: v1alpha3
|
|
schema:
|
|
openAPIV3Schema:
|
|
description: AzureManagedMachinePool is the Schema for the azuremanagedmachinepools
|
|
API
|
|
properties:
|
|
apiVersion:
|
|
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'
|
|
type: string
|
|
kind:
|
|
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'
|
|
type: string
|
|
metadata:
|
|
type: object
|
|
spec:
|
|
description: AzureManagedMachinePoolSpec defines the desired state of
|
|
AzureManagedMachinePool
|
|
properties:
|
|
osDiskSizeGB:
|
|
description: OSDiskSizeGB is the disk size for every machine in this
|
|
agent pool. If you specify 0, it will apply the default osDisk size
|
|
according to the vmSize specified.
|
|
format: int32
|
|
type: integer
|
|
providerIDList:
|
|
description: ProviderIDList is the unique identifier as specified
|
|
by the cloud provider.
|
|
items:
|
|
type: string
|
|
type: array
|
|
sku:
|
|
description: SKU is the size of the VMs in the node pool.
|
|
type: string
|
|
required:
|
|
- sku
|
|
type: object
|
|
status:
|
|
description: AzureManagedMachinePoolStatus defines the observed state
|
|
of AzureManagedMachinePool
|
|
properties:
|
|
errorMessage:
|
|
description: Any transient errors that occur during the reconciliation
|
|
of Machines can be added as events to the Machine object and/or
|
|
logged in the controller's output.
|
|
type: string
|
|
errorReason:
|
|
description: Any transient errors that occur during the reconciliation
|
|
of Machines can be added as events to the Machine object and/or
|
|
logged in the controller's output.
|
|
type: string
|
|
ready:
|
|
description: Ready is true when the provider resource is ready.
|
|
type: boolean
|
|
replicas:
|
|
description: Replicas is the most recently observed number of replicas.
|
|
format: int32
|
|
type: integer
|
|
type: object
|
|
type: object
|
|
served: true
|
|
storage: true
|
|
subresources:
|
|
status: {}
|
|
status:
|
|
acceptedNames:
|
|
kind: ""
|
|
plural: ""
|
|
conditions: []
|
|
storedVersions: []
|