Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

helm commands

helm repo add bitnami https://charts.bitnami.com/bitnami # Adding Repo
helm repo update	# Update Repo
helm repo list 		# List Repo

helm search hub <charts-name> 	# Search in hub
helm search repo <charts-name> # Search local repo

helm install myredis bitnami/redis  # Install Release
helm install -f myvalues.yaml myredis bitnami/redis # Install Using Value yaml
helm install <release-name> <charts-name> -n <namespace> # Install in Particular namespace
helm list -n <namespace-name> # List of release in Particular namespace
helm list -A 

helm uninstall <release-name>				 # Uninstall Release
helm uninstall <release-name> -n <namespace> # Uninstall Release in Particular namespace

helm version # Check Version
Comment

PREVIOUS NEXT
Code Example
Shell :: how to install tar.gz setup of pycharm community 
Shell :: how to commit files in github 
Shell :: insert bash command to docker-compose file 
Shell :: how to save ssh keygen How to add ssh keys to a specific user in linux? 
Shell :: how to get the digit count of number swift 
Shell :: powershell which equivalent 
Shell :: set up vim in zsh 
Shell :: regex final word 
Shell :: sed replace with variable 
Shell :: powershell which command 
Shell :: git make new branch 
Shell :: ubuntu livepatch fail 
Shell :: anaconda for ubuntu 18.04 
Shell :: rename git repository command line 
Shell :: how to ls git branch 
Shell :: $(cat <<EOF 
Shell :: ffmpeg change audio codec from m4a to mp3 
Shell :: mongo remove collection 
Shell :: undo revert commit 
Shell :: install magento 2 docker 
Shell :: unzip a file terminal 
Shell :: create bare repository git 
Shell :: how to push your code to github 
Shell :: list all local branches off a branhc 
Shell :: commit with git 
Shell :: force push to remote branch 
Shell :: kuberetes config 
Shell :: take a screenshot linux terminal 
Shell :: Syntax error: word unexpected (expecting "in") 
Shell :: gitlab push 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =