d0683139fe
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
49 lines
1.9 KiB
YAML
Executable File
49 lines
1.9 KiB
YAML
Executable File
apiVersion: airshipit.org/v1alpha1
|
|
kind: Clusterctl
|
|
metadata:
|
|
labels:
|
|
airshipit.org/deploy-k8s: "false"
|
|
name: clusterctl-v1
|
|
init-options:
|
|
core-provider: "cluster-api:v0.3.7"
|
|
bootstrap-providers:
|
|
- "kubeadm:v0.3.7"
|
|
infrastructure-providers:
|
|
- "azure:v0.4.8"
|
|
control-plane-providers:
|
|
- "kubeadm:v0.3.7"
|
|
providers:
|
|
- name: "azure"
|
|
type: "InfrastructureProvider"
|
|
variable-substitution: true
|
|
versions:
|
|
v0.4.8: manifests/function/capz/v0.4.8
|
|
- name: "kubeadm"
|
|
type: "BootstrapProvider"
|
|
variable-substitution: true
|
|
versions:
|
|
v0.3.7: manifests/function/cabpk/v0.3.7
|
|
- name: "cluster-api"
|
|
type: "CoreProvider"
|
|
variable-substitution: true
|
|
versions:
|
|
v0.3.7: manifests/function/capi/v0.3.7
|
|
- name: "kubeadm"
|
|
type: "ControlPlaneProvider"
|
|
variable-substitution: true
|
|
versions:
|
|
v0.3.7: manifests/function/cacpk/v0.3.7
|
|
# env-vars: true
|
|
additional-vars:
|
|
CONTAINER_CAPI_MANAGER: us.gcr.io/k8s-artifacts-prod/cluster-api/cluster-api-controller:v0.3.7
|
|
CONTAINER_CAPI_AUTH_PROXY: gcr.io/kubebuilder/kube-rbac-proxy:v0.4.1
|
|
CONTAINER_CABPK_MANAGER: us.gcr.io/k8s-artifacts-prod/cluster-api/kubeadm-bootstrap-controller:v0.3.7
|
|
CONTAINER_CABPK_AUTH_PROXY: gcr.io/kubebuilder/kube-rbac-proxy:v0.4.1
|
|
CONTAINER_CACPK_MANAGER: us.gcr.io/k8s-artifacts-prod/cluster-api/kubeadm-control-plane-controller:v0.3.7
|
|
CONTAINER_CACPK_AUTH_PROXY: gcr.io/kubebuilder/kube-rbac-proxy:v0.4.1
|
|
# Fake environment variables values so it can pass the validate-site-docs
|
|
AZURE_SUBSCRIPTION_ID_B64: "UGxlYXNlLCBwcm92aWRlIHlvdXIgQXp1cmUgc3Vic2NyaXB0aW9uIGlkIGhlcmUK"
|
|
AZURE_TENANT_ID_B64: "UGxlYXNlLCBwcm92aWRlIHlvdXIgQXp1cmUgdGVuYW50IGlkIGhlcmUK"
|
|
AZURE_CLIENT_ID_B64: "UGxlYXNlLCBwcm92aWRlIHlvdXIgQXp1cmUgc2VydmljZSBwcmluY2lwYWwgaWQgaGVyZQo="
|
|
AZURE_CLIENT_SECRET_B64: "UGxlYXNlLCBwcm92aWRlIHlvdXIgQXp1cmUgc2VydmljZSBwcmluY2lwYWwgc2VjcmV0IGhlcmUK"
|
|
AZURE_ENVIRONMENT: "AzurePublicCloud" |