diff --git a/_data/toc.yaml b/_data/toc.yaml index 32f58c48db..4f79e11e36 100644 --- a/_data/toc.yaml +++ b/_data/toc.yaml @@ -1410,6 +1410,8 @@ manuals: title: Install - path: /datacenter/ucp/3.0/guides/admin/install/install-offline/ title: Install offline + - path: /datacenter/ucp/3.0/guides/admin/install/install-on-azure/ + title: Install on Azure - path: /datacenter/ucp/3.0/guides/admin/install/upgrade/ title: Upgrade - path: /datacenter/ucp/3.0/guides/admin/install/upgrade-offline/ diff --git a/datacenter/ucp/3.0/guides/admin/install/install-on-azure.md b/datacenter/ucp/3.0/guides/admin/install/install-on-azure.md index 1d256bf6c8..d08c44349b 100644 --- a/datacenter/ucp/3.0/guides/admin/install/install-on-azure.md +++ b/datacenter/ucp/3.0/guides/admin/install/install-on-azure.md @@ -272,10 +272,14 @@ for each VM in the VM scale set. ## Install UCP -Use the following command to install UCP on the manager node. -The `--pod-cidr` option maps to the IP address range that you configured for -the subnets in the previous sections, and the `--host-address` maps to the -IP address of the master node. +Run the following command to install UCP on a manager node. The `--pod-cidr` +option maps to the IP address range that you have configured for the Azure +subnet, and the `--host-address` maps to the private IP address of the master node + +> Note: The `pod-cidr` range must match the Azure Virtual Network's Subnet host. +> attached the hosts. For example, if the Azure Virtual Network had the range +> `172.0.0.0/16` with Virtual Machines provisioned on an Azure Subnet of +> `172.0.1.0/24`, then the Pod CIDR should also be `172.0.1.0/24`. ```bash docker container run --rm -it \ @@ -283,8 +287,7 @@ docker container run --rm -it \ -v /var/run/docker.sock:/var/run/docker.sock \ {{ page.ucp_org }}/{{ page.ucp_repo }}:{{ page.ucp_version }} install \ --host-address \ - --interactive \ - --swarm-port 3376 \ --pod-cidr \ - --cloud-provider Azure + --cloud-provider Azure \ + --interactive ``` \ No newline at end of file