How to install specific version of Kubernetes?

前端 未结 4 1055
面向向阳花
面向向阳花 2020-12-25 14:44

I install the latest version of Kubernetes with the following command on Raspberry PI 3 running Raspbian Stretch.

$ curl -s https://packages.cloud.google.com         


        
4条回答
  •  情书的邮戳
    2020-12-25 15:25

    on Mac to install v1.8.5 of kubernetes follow the below steps

    Get the kubectl binary.

    curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.8.5/bin/darwin/amd64/kubectl
    

    Make the kubectl binary executable.

    chmod +x ./kubectl
    

    Move the kubectl executable to /usr/local/bin.

    sudo mv ./kubectl /usr/local/bin/kubectl
    

提交回复
热议问题