Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

kubectl install on ubuntu

curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl"
Comment

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

kubectl run ubuntu

$ kubectl run my-shell --rm -i --tty --image ubuntu -- bash
Comment

PREVIOUS NEXT
Code Example
Shell :: install vue-router for vue 2 
Shell :: Bitbucket Cloud recently stopped supporting account passwords for Git authentication 
Shell :: what is the command to move the cursor to the start of the current line in vi 
Shell :: "grep -a" example 
Shell :: secure copy linux 
Shell :: ssh key location windows 
Shell :: pwd windows 
Shell :: git stash only untracked files 
Shell :: ansible max hosts? 
Shell :: remove tools 
Shell :: adavanced 
Shell :: mac finder quick preview for markdown 
Shell :: ubuntu 2022 theme 
Shell :: run powershell 64bit 
Shell :: linux audio auto mute issue 
Shell :: cat to line number 
Shell :: ansible tar with a datestamp 
Shell :: how to find which options a command supports in linux 
Shell :: Install the cordova module using npm utility of Node.js in windows 
Shell :: usedapp install command 
Shell :: ros galactic build 
Shell :: ubuntu create large file 
Shell :: How to remove files and directories quickly via terminal (bash shell) 
Shell :: List given directory size, directories, and files bash 
Shell :: bulk folder creation by windows powershell 
Shell :: how to search for a package on arch repositories 
Shell :: powershell join-object 
Shell :: global menu cinnamon 
Shell :: ubuntu r package install problem 
Shell :: change linux root max file descriptors 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =