Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 457 Bytes

helm.md

File metadata and controls

36 lines (28 loc) · 457 Bytes

Install

MacOS (using brew)

brew install helm

Configure

zsh completion

echo 'source <(helm completion zsh)' | cat >> ~/.zshrc
source ~/.zshrc

add repository

helm repo add stable https://charts.helm.sh/stable

update repository

helm repo update

Usage

Search for charts

helm search repo memcached

Install chart with name mycache

helm install mycache stable/memcached