===== Helm =====
Helm unter K3s
\\
==== Helm installieren und ENV setzten ====
snap install helm --classic
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
helm ls --all-namespaces
\\
Kubeconfig beim Login automatisch setzten
vim ~/.bashrc
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
\\
===== Helm Commands =====
==== Repos ====
helm repo add
helm repo list
helm repo update
helm repo remove
\\
==== Charts ====
helm install
helm install --version ''
helm ls
helm uninstall
helm upgrade
helm upgrade --version '' --set
helm get all
helm get values
\\