mirror of https://github.com/docker/docs.git
Fixing a few nits :)
Signed-off-by: ollypom <oppomeroy@gmail.com>
This commit is contained in:
parent
b130e505f6
commit
92b803745e
|
|
@ -158,7 +158,9 @@ Follow the steps below to configure multiple IP addresses per VM NIC.
|
|||
docker swarm init
|
||||
```
|
||||
|
||||
2. Note the tokens for managers and workers.
|
||||
2. Note the tokens for managers and workers. You may retrieve the join tokens
|
||||
at any time by running `$ docker swarm join-token manager` or `$ docker swarm
|
||||
join-token worker` on the manager node.
|
||||
3. Join two other nodes on the cluster as manager (recommended for HA) by running:
|
||||
|
||||
```bash
|
||||
|
|
@ -175,10 +177,12 @@ Follow the steps below to configure multiple IP addresses per VM NIC.
|
|||
creating the Service Principal.
|
||||
|
||||
```
|
||||
$ cat > azure_ucp_admin.toml <<EOF
|
||||
AZURE_CLIENT_ID = "<AD App ID field from Step 1>"
|
||||
AZURE_TENANT_ID = "<AD Tenant ID field from Step 1>"
|
||||
AZURE_SUBSCRIPTION_ID = "<Azure subscription ID>"
|
||||
AZURE_CLIENT_SECRET = "<AD App Secret field from Step 1>"
|
||||
EOF
|
||||
```
|
||||
|
||||
6. Create a Docker Swarm secret based on the "azure_ucp_admin.toml" file.
|
||||
|
|
|
|||
|
|
@ -24,7 +24,9 @@ You have two options for provisoning IPs for the Kubernetes cluster on Azure:
|
|||
and by default will provision 128 IP address for each node. This value can be
|
||||
configured via the `azure_ip_count`in the UCP
|
||||
[configuration file](../configure/ucp-configuration-file) before or after the
|
||||
UCP installation.
|
||||
UCP installation. Note if this value is reduced post installation, existing
|
||||
VMs will not be reconciled, a user would have to manually edit the IP count
|
||||
in Azure.
|
||||
- Manually provision additional IP address for each Azure VM. This could be done
|
||||
as part of an Azure Virtual Machine Scale Set via an ARM template, an example
|
||||
can be found [here](#set-up-ip-configurations-on-an-azure-virtual-machine-scale-set).
|
||||
|
|
|
|||
Loading…
Reference in New Issue