Skip to content

Commit b03c5c6

Browse files
committed
add cluster connect info
1 parent 741a218 commit b03c5c6

1 file changed

Lines changed: 20 additions & 5 deletions

File tree

  • src/quickstart/provider/azure-acs

src/quickstart/provider/azure-acs/boot.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,15 +135,30 @@ The Kubernetes cluster will take a few minutes to complete provisioning and conf
135135
## Connect to your Kubernetes Cluster
136136

137137
1. Find hostname for the master
138-
2. SCP Kubeconfig from master into place
138+
`az acs list`
139+
Part of the way down the output, copy the fqdn value for your master dns name which will end with cloudapp.azure.com.
140+
```
141+
"masterProfile": {
142+
"count": 1,
143+
"dnsPrefix": "asc-deis-k8s-masters",
144+
"fqdn": "mydnsprefix.myregion.cloudapp.azure.com"
145+
},
146+
```
147+
148+
2. Download the Kubeconfig from the master to your terminal
149+
`scp -i ~/.ssh/id_rsa k8sadmin@mydnsprefix.myregion.cloudapp.azure.com:.kube/config ~/.kube/k8sanddeis.config`
150+
139151
3. Set KUBECONFIG environment value
152+
`KUBECONFIG=~/.kube/k8sanddeis.config`
153+
154+
4. Verify you can connect to your Kubernetes cluster by running `kubectl cluster-info`
140155

141156
```
142157
$ kubectl cluster-info
143-
Kubernetes master is running at https://slack-acs-1mgmt.eastus.cloudapp.azure.com
144-
Heapster is running at https://slack-acs-1mgmt.eastus.cloudapp.azure.com/api/v1/proxy/namespaces/kube-system/services/heapster
145-
KubeDNS is running at https://slack-acs-1mgmt.eastus.cloudapp.azure.com/api/v1/proxy/namespaces/kube-system/services/kube-dns
146-
kubernetes-dashboard is running at https://slack-acs-1mgmt.eastus.cloudapp.azure.com/api/v1/proxy/namespaces/kube-system/services/kubernetes-dashboard
158+
Kubernetes master is running at https://mydnsprefix.myregion.cloudapp.azure.com
159+
Heapster is running at https://mydnsprefix.myregion.cloudapp.azure.com/api/v1/proxy/namespaces/kube-system/services/heapster
160+
KubeDNS is running at https://mydnsprefix.myregion.cloudapp.azure.com/api/v1/proxy/namespaces/kube-system/services/kube-dns
161+
kubernetes-dashboard is running at https://mydnsprefix.myregion.cloudapp.azure.com/api/v1/proxy/namespaces/kube-system/services/kubernetes-dashboard
147162
```
148163

149164
You are now ready to [install Deis Workflow](install-azure-acs.md)

0 commit comments

Comments
 (0)