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 :: bash grep 
Shell :: install laravel installer on fish shell 
Shell :: ERROR: Failed building wheel for kiwisolver 
Shell :: loading hard disk driver in rhel 8 
Shell :: mailutils check mail 
Shell :: udev rule adb 
Shell :: echo variable referenced in variable 
Shell :: view nohup output 
Shell :: Log sync requires rsync to be installed. 
Shell :: vagrant init ubuntu/trusty64 
Shell :: how to compare differences between two files in linux 
Shell :: uninstall newrelic amazon linux 
Shell :: run nock in debug 
Shell :: copy a file through ssh 
Shell :: bash run until success or timeout 
Shell :: docker install ubuntu 
Shell :: get you the list of those packages that Postgres installed. 
Shell :: mkdir -p exemple 
Shell :: git credential.helper does not store username password 
Shell :: créer un fichier powershell 
Shell :: disbale knopwob dunst 
Shell :: 200 response .htaccess 
Shell :: cant install pyscopg2 win? 
Shell :: linux ssh 
Shell :: view branches not merged with master 
Shell :: how to clone pull all repositories from github 
Shell :: variable replacement bash zero padding 
Shell :: how to install redux for react native 
Shell :: create branch git command 
Shell :: vscode keyring 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =