58f39ffa95
This commit provides the Go code and scripts for the Bootstrap container for Azure. The Bootstrap container (bootstrap_capz) for Azure is designed to accept three commands: create, delete and help. - create - will create an Ephemeral AKS cluster in Azure Cloud - delete - will delete the Ephemeral AKS cluster from the Azure Cloud - help - Stdout the help text for using this container. Please, refer to the bootstrap_capz/README.md for further details. Change-Id: Id1947f7b831a5d6cf59296cf39ff2b436080483d
22 lines
559 B
JSON
22 lines
559 B
JSON
{
|
|
"apiVersion":"v1",
|
|
"credentials":{
|
|
"tenant":"<Your Azure Subscription Tenant ID>",
|
|
"client":"<Your Azure Service Principal ID>",
|
|
"secret":"<Your Azure Service Principal Secret>"
|
|
},
|
|
"kind":"AzureConfig",
|
|
"metadata":{
|
|
"name":"capi-azure-zuul"
|
|
},
|
|
"region":"centralus",
|
|
"resourceGroup":"airship2-zuul-rg",
|
|
"spec":{
|
|
"cluster":{
|
|
"k8sVersion":"1.18.6",
|
|
"kubeconfig":"capz.kubeconfig",
|
|
"replicas":1,
|
|
"vmSize":"Standard_B2s"
|
|
}
|
|
}
|
|
} |