May 2018
Intermediate to advanced
554 pages
13h 51m
English
Before our major tutorial, we will need to install kops on to your local host. It is a straightforward step for downloading the binary file and moving it to the system directory of the execution file:
// download the latest stable kops binary$ curl -LO https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-linux-amd64$ chmod +x kops-linux-amd64$ sudo mv kops-linux-amd64 /usr/local/bin/kops// verify the command is workable$ kops versionVersion 1.9.0 (git-cccd71e67)
Next, we have to prepare some AWS configuration on your host and required services for cluster. Refer to the following items and make sure that they are ready: ...
Read now
Unlock full access