Azure-snabbstartsmallarna finns för närvarande bara på engelska
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.
Den här ARM-mallen (Azure Resource Manager) skapades av en community-medlem, inte av Microsoft. Varje ARM-mall licensieras till dig enligt ett licensavtal av respektive ägare, inte Microsoft. Microsoft ansvarar inte för ARM-mallar som erbjuds och licensieras av community-medlemmar och undersöker inte mallarnas säkerhet, kompatibilitet eller prestanda. Microsofts supportprogram och supporttjänster omfattar inte support för ARM-mallar från community-medlemmar, och dessa mallar tillhandahålls i BEFINTLIGT SKICK utan någon form av garanti.
Parametrar
Parameternamn | Beskrivning |
---|---|
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. |
Använda mallen
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 deploymentInstallera och konfigurera 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
Kommandoraden
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 deploymentInstallera och konfigurera Azures plattformsoberoende kommandoradsgränssnitt
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