@@ -135,15 +135,30 @@ The Kubernetes cluster will take a few minutes to complete provisioning and conf
135135## Connect to your Kubernetes Cluster
136136
1371371 . 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+
1391513 . 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
149164You are now ready to [ install Deis Workflow] ( install-azure-acs.md )
0 commit comments