Horje
helm commands Code Example
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




Shell

Related
curl omit ssl Code Example curl omit ssl Code Example
xampp aliases Code Example xampp aliases Code Example
gsutil cp command Code Example gsutil cp command Code Example
Move folder content up a level using bash/shell Code Example Move folder content up a level using bash/shell Code Example
Error: serverless-domain-manager: Plugin configuration is missing. Code Example Error: serverless-domain-manager: Plugin configuration is missing. Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11