The Azure Container Service Engine (acs-engine) generates ARM (Azure Resource Manager) templates for Docker enabled clusters on Microsoft Azure with your choice of DC/OS, Kubernetes, Swarm Mode, or Swarm orchestrators. The input to the tool is a cluster definition. The cluster definition is very similar to (in many cases the same as) the ARM template syntax used to deploy a Microsoft Azure Container Service cluster.
This Azure Resource Manager template was created by a member of the community and not by Microsoft. Each Resource Manager template is licensed to you under a license agreement by its owner, not Microsoft. Microsoft is not responsible for Resource Manager templates provided and licensed by community members and does not screen for security, compatibility, or performance. Community Resource Manager templates are not supported under any Microsoft support program or service, and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
agentCount | The number of agents for the cluster. This value can be from 1 to 100 |
agentEndpointDNSNamePrefix | Sets the Domain name label for the agent pool IP Address. The concatenation of the domain name label and the regional DNS zone make up the fully qualified domain name associated with the public IP address. |
agentSubnet | Sets the subnet of agent pool 'agent'. |
agentVMSize | The size of the Virtual Machine. |
firstConsecutiveStaticIP | Sets the static IP of the first master |
linuxAdminUsername | User name for the Linux Virtual Machines (SSH or Password). |
location | Sets the location for all resources in the cluster |
masterEndpointDNSNamePrefix | Sets the Domain name label for the master IP Address. The concatenation of the domain name label and the regional DNS zone make up the fully qualified domain name associated with the public IP address. |
masterSubnet | Sets the subnet of the master node(s). |
masterVMSize | The size of the Virtual Machine. |
nameSuffix | A string hash of the master DNS name to uniquely identify the cluster. |
sshRSAPublicKey | SSH public key used for auth to all Linux machines. Not Required. If not set, you must provide a password key. |
Use the template
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and configure Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/swarm/acsengine-swarmmode/azuredeploy.json
Command line
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and Configure the Azure Cross-Platform Command-Line Interface
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/swarm/acsengine-swarmmode/azuredeploy.json