Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install kind

curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.8.0/kind-$(uname)-amd64
chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/kind
Comment

How to install kind

rm -rf /usr/local/go #Remove Previous Go Installation
sudo curl "https://dl.google.com/go/go1.17.linux-amd64.tar.gz" --output go1.17.linux-amd64.tar.gz #download golang
sudo tar -C /usr/local -xzf go1.17.linux-amd64.tar.gz # Extract and add to new Archive
echo -e '
export PATH=$PATH:/usr/local/go/bin' >>  $HOME/.profile # add path 
curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.11.1/kind-$(uname)-amd64" # Download Kind
chmod +x ./kind # Change Permission
sudo mv ./kind /usr/local/go/bin/kind #Move to a recognizable Path
source $HOME/.profile #execute new path export
kind create cluster # Test
Comment

PREVIOUS NEXT
Code Example
Shell :: ngrok minecraft server 
Shell :: reset gui linux 
Shell :: sh is null if 
Shell :: cpu temp on ubuntu 
Shell :: bash scripts options without arg 
Shell :: E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it? 
Shell :: yarn start --reset-cache 
Shell :: how to create a text file in batch 
Shell :: bash store file in array 
Shell :: delete commit head 
Shell :: *** WARNING : deprecated key derivation used 
Shell :: install sqlite browser 
Shell :: zsh fzf plugin 
Shell :: how to refresh cache on github 
Shell :: how to run eslint on the whole project 
Shell :: how to show ubuntu logo in terminal 
Shell :: bash copy file and rename 
Shell :: add user to sudoer 
Shell :: ssh vs gpg keys 
Shell :: how to install docker on Debian 10 
Shell :: flutter ci cd gitlab 
Shell :: create a branch from main 
Shell :: remove a directory 
Shell :: linux bring process to foreground 
Shell :: conda install multiprocess 
Shell :: server 2012r2 powershell unable to download from URI 
Shell :: docker remove all images powershell 
Shell :: install torch 
Shell :: get Operating system command 
Shell :: give docker permission to non-root user in linux 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =