Azure クイックスタート テンプレートは現在英語で使用できます
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.
この Azure Resource Manager (ARM) テンプレートは、マイクロソフトではなく、コミュニティのメンバーによって作成されました。各 ARM テンプレートは、マイクロソフトではなく、テンプレートの所有者によるライセンス契約に基づいて使用許諾されます。マイクロソフトは、コミュニティ メンバーによって提供および使用許諾される ARM テンプレートに対して責任を負わず、セキュリティ、互換性、パフォーマンスなどについての調査を行っていません。コミュニティ ARM テンプレートは、Microsoft サポート プログラムまたはサービスのサポート対象ではなく、手を加えずに提供され、いかなる保証もありません。
パラメーター
パラメーター名 | 説明 |
---|---|
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. |
テンプレートを使用する
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 deploymentAzure PowerShell のインストールと構成
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/swarm/acsengine-swarmmode/azuredeploy.json
コマンド ライン
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 deploymentAzure クロス プラットフォーム コマンド ライン インターフェイスのインストールと構成
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