Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

deploy_instruction.md

File metadata and controls

33 lines (24 loc) · 1.15 KB

K8S cluster application

Here is a guide for you to apply your K8S cluster on Baidu Cloud

The number of CPU cores should be larger than 8

kubectl installation

#download newest version
curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/darwin/amd64/kubectl"
#add authorization for kubectl execution 
chmod +x ./kubectl
#move the execuable file to the enviroment path
sudo mv ./kubectl /usr/local/bin/kubectl
#check installation and get the version
kubectl version

Add configuration for kubectl

After installing kubectl, we need to add some configurations for kubectl.

You can find the status of your cluster and download the certication here

Finally, move the certification to default path of kubectl and you can access the remote K8S cluster on your machine

mv kubectl.conf  ~/.kube/config

kubectl get node