May 2018
Intermediate to advanced
554 pages
13h 51m
English
Furthermore, as you can see in the previous section, the last few logs of kops cluster creation shows that the environment of the client is also ready. It means that kops helps to bind the API server to our host securely as well. We may use the kubectl command like we were in Kubernetes master. What we need to do is install kubectl manually. It would be as simple as installing kops; just download the binary file:
// install kubectl on local$ curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl$ chmod +x kubectl$ sudo mv kubectl /usr/local/bin/// check the nodes in cluster on AWS$ kubectl ...
Read now
Unlock full access