Helm 3 Cheatsheet

?
S
Bash

Cheatsheet for Helm 3. https://helm.sh/docs/intro/quickstart/ helm repo add eks https://aws.github.io/eks-charts

1# Install
2brew install helm (3.2.0)
3
4# Install a chart
5helm install chart_name
6
7# Add a chart repository
8helm repo add stable https://kubernetes-charts.storage.googleapis.com/
9helm repo add eks https://aws.github.io/eks-charts
10
11# Update charts repo
12helm repo update
13
14# List all charts which you can install
15helm search repo stable
16
17# List Releases
18helm list
19
20# Rollback
21helm rollback eb-flow-api-default 12
22
23# Delete a Release
24helm delete seed-client-staging --namespace=staging
25
26==========================
27# Template - Redis
28$ helm repo add bitnami https://charts.bitnami.com/bitnami
29$ helm install RELEASE-NAME bitnami/redis --set auth.enabled=false

Created on 3/20/2020