Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

bash install kubectl

curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.18.0/bin/linux/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
kubectl version --client
Comment

install kubectl windows 10

# download & install
curl -LO "https://dl.k8s.io/release/v1.25.0/bin/windows/amd64/kubectl.exe"
# test
kubectl version --client --output=yaml
Comment

install kubectl

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/bin/kubectl # you can replace /usr/bin for some dir in your PATH
Comment

kubectl for windows

curl -LO https://dl.k8s.io/release/v1.22.0/bin/windows/amd64/kubectl.exe
Comment

Install Kubectl on linux

sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
Comment

download kubectl for windows

curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/windows/amd64/kubectl.exe"
Comment

install kubectl windows 10

# download & install
curl -LO "https://dl.k8s.io/release/v1.25.0/bin/windows/amd64/kubectl.exe"
# check
kubectl version --client
Comment

Install Kubectl on linux

curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
Comment

install kubectl

curl -LO "https://dl.k8s.io/release/v1.22.0/bin/windows/amd64/kubectl.exe"
Comment

kubectl install

curl -LO "https://dl.k8s.io/release/v1.23.0/bin/windows/amd64/kubectl.exe"
Comment

install kubectl

mkdir .kube
Comment

install kubectl

# If you're using cmd.exe, run: cd %USERPROFILE%
cd ~
Comment

PREVIOUS NEXT
Code Example
Shell :: tar multiple files and directories 
Shell :: ssh into directory 
Shell :: how to change mac address kali linux 
Shell :: git checkout fast 
Shell :: rename a directory in git 
Shell :: grep line after match 
Shell :: remove untracked files git 
Shell :: git commands to push to github 
Shell :: sudo: yum: command not found 
Shell :: apt install codium 
Shell :: make zip file command 
Shell :: kill process bash 
Shell :: how to move to directories in command prompt 
Shell :: bash "=~" example 
Shell :: powershell global variable 
Shell :: store env file in firebase functions 
Shell :: bash substract varible 
Shell :: install pytorch in virtual environment 
Shell :: opera browser for fedora 
Shell :: remove a git remote origin 
Shell :: linux extract txz 
Shell :: Start MySQL FreeBSD 
Shell :: how to show a tag in git 
Shell :: git flow sourcetree command 
Shell :: git apply trailing whitespace 
Shell :: wps office has not found any installed printers 
Shell :: cmake comment 
Shell :: add kdiff3 to git 
Shell :: Target DEP-11-icons-small (stable/dep11/icons-48x48.tar) is configured multiple times in /etc/apt/sources.list.d/archive_uri-https_download_docker_com_linux_ubuntu-groovy.list:1 and /etc/apt/sources.list.d/docker-ce.list:1 
Shell :: extract zip in collab 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =