Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install kubectl ubuntu

curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
curl -LO "https://dl.k8s.io/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl.sha256"
echo "$(<kubectl.sha256) kubectl" | sha256sum --check
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
kubectl version --client
Comment

install kubectl ubuntu

sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates curl
Comment

install kubernetes linux

sudo snap install microk8s --classic
Comment

install kubernetes on ubuntu

sudo apt-add-repository "deb http://apt.kubernetes.io/ kubernetes-xenial main"
Comment

install kubernetes on ubuntu

sudo apt-mark hold kubeadm kubelet kubectl
Comment

PREVIOUS NEXT
Code Example
Shell :: install stremio ubuntu 20.04 
Shell :: backtick ubuntu 
Shell :: import bjson mongodb 
Shell :: Install nomachine in jetson nano 
Shell :: reset to commit 
Shell :: read input from multiple lines in BASH 
Shell :: initialize a local repository 
Shell :: mongodb install issues 
Shell :: permission in linux 
Shell :: windows 10 do not show in the grub menu 
Shell :: find hidden directories and files from a website wfuzz 
Shell :: bash regex match space 
Shell :: migration angular version 
Shell :: powershell show first few lines of command 
Shell :: cli50 install with pip3 
Shell :: linux which command 
Shell :: ubuntu command change line in file 
Shell :: grep search in file bash 
Shell :: linux split file by lines 
Shell :: linux get part of string 
Shell :: open command linux 
Shell :: install with pip in jupyter 
Shell :: how to boot from grub rescue 
Shell :: wpa_supplicant connect to wifi 
Shell :: git deleted files update 
Shell :: lost password gitlab 
Shell :: find index of string in bash 
Shell :: npm commands 
Shell :: find resolution of image terminal linux 
Shell :: authentication failed for git 
ADD CONTENT
Topic
Content
Source link
Name
2+5 =