Las plantillas de Inicio rápido de Azure están disponibles actualmente en inglés.
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.
Esta plantilla de Azure Resource Manager (ARM) la creó un miembro de la comunidad, no Microsoft. Su propietario (no Microsoft) le permite usar las plantillas de ARM con arreglo a un contrato de licencia. Microsoft no se responsabiliza de ninguna plantilla de ARM que le proporcionen los miembros de la comunidad (o cuya licencia le otorguen) en cuanto a su seguridad, compatibilidad ni rendimiento. Las plantillas de ARM de la comunidad no reciben ningún tipo de soporte en ningún servicio ni programa de soporte de Microsoft. Dichas plantillas se proporcionan TAL CUAL, sin garantía de ningún tipo.
Parámetros
Nombre del parámetro | Descripción |
---|---|
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. |
Uso de la plantilla
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 deploymentInstalar y configurar PowerShell de Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/swarm/acsengine-swarmmode/azuredeploy.json
Línea de comandos
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 deploymentInstalación y configuración de la interfaz de línea de comandos multiplataforma de Azure
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