Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

helm cheat sheet

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 :: bash inline countdown 
Shell :: install geopandas in jupyter notebook 
Shell :: how to put files into gitignore 
Shell :: docker compose exec compose 
Shell :: remove a file from a commit 
Shell :: unzip specific folder linux 
Shell :: raspberry clear cache 
Shell :: heroku ubuntu install 
Shell :: uninstall specific java openjdk ubuntu 
Shell :: nvm install 
Shell :: bash change file extension 
Shell :: loop array bash 
Shell :: kube log 
Shell :: delete file on git 
Shell :: bash how to convert text to lowercase or uppercase 
Shell :: linux list files in txt 
Shell :: net speed monitor for ubuntu 
Shell :: destroy linux with one command 
Shell :: bash check if command is available 
Shell :: Git - delete specific branch 
Shell :: how to see (and kill) what is running on your port +mac 
Shell :: change default terminal linux 
Shell :: how to merge text files into one bash 
Shell :: script to install cf cli in linux 
Shell :: Virtual Camera Support for linux 
Shell :: bash sum numbers 
Shell :: homebrew without sudo 
Shell :: git fetch upstream 
Shell :: import single table from mysql dump 
Shell :: helm release minio 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =