Skip to content

Latest commit

 

History

History
69 lines (59 loc) · 1.53 KB

README.md

File metadata and controls

69 lines (59 loc) · 1.53 KB

kube-things-installer

Install kubectl, helm, kubens, kubectx, kubecolor with a simple script

What will be installed?

Usage

Help parameter

./install.sh -h

Output

Usage: install.sh [OPTION] [COMPONENT]
Install kubectl, helm, kubens, kubectx and kubecolor

Options:
  -i, --install   install component
  -r, --remove    remove component
  -h, --help      display this help and exit
  -v, --version   display version information and exit

Components:
  -a, --all       install all components
  kubectl         install kubectl
  helm            install helm
  kubens          install kubens
  kubectx         install kubectx
  kubecolor       install kubecolor

Examples:
Install kubectl:              install.sh -i kubectl
Install all the components:   install.sh -i --all
Remove kubectl:               install.sh -r kubectl
Help message:                 install.sh -h
Version:                      install.sh -v

Install parameter

Install everything

./install.sh -i -a

Install kubectl

./install.sh -i kubectl

Remove parameter

Remove kubectl

./install.sh -r kubectl

Remove everything

./install.sh -r -a

Version parameter

Show installer version

./install.sh -v