Skip to content

Commit

Permalink
changed CONTROLLER valus to WORKER for worker nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
EamonKeane committed Mar 13, 2018
1 parent 6058403 commit e8fb369
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/09-bootstrapping-kubernetes-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ az vm show -g kubernetes --name worker-0 --query "tags" -o tsv
Login to each worker instance using the `az` command to find its public IP and ssh to it. Example:

```shell
CONTROLLER="worker-0"
WORKER="worker-0"
PUBLIC_IP_ADDRESS=$(az network public-ip show -g kubernetes \
-n ${CONTROLLER}-pip --query "ipAddress" -otsv)
-n ${WORKER}-pip --query "ipAddress" -otsv)

ssh $(whoami)@${PUBLIC_IP_ADDRESS}
```
Expand Down

0 comments on commit e8fb369

Please sign in to comment.