Helm: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 13: Line 13:
  helm search repo jenkins
  helm search repo jenkins
  helm version
  helm version
==Knowledge==
{|
|valign='top'|
minikube start --cpus 6 --memory 8192
minikube start
|valign='top'|
export KUBECONFIG=${HOME}/.kube/academia-config.yaml
unset KUBECONFIG
|valign='top'|
minikube stop
minikube delete
|-
|colspan='3'|
----
|-
|valign='top'|
helm repo --help
helm repo list
|valign='top'|
|valign='top'|
|-
|colspan='3'|
----
|-
|valign='top'|
|valign='top'|
|valign='top'|
|}


==References==
==References==

Revision as of 22:20, 24 April 2023

sudo wget -c https://get.helm.sh/helm-v3.11.1-linux-amd64.tar.gz -P /opt/cli/
sudo tar -xvzf /opt/cli/helm-v3.11.1-linux-amd64.tar.gz -C /opt/cli/
sudo rm  -rf   /opt/cli/helm-v3.11.1-linux-amd64.tar.gz
sudo mv /opt/cli/linux-amd64 /opt/cli/helm-v3.11.1-linux-amd64
sudo update-alternatives --install /usr/local/bin/helm helm\
 /opt/cli/helm-v3.11.1-linux-amd64/helm 1983

sudo update-alternatives --install /usr/bin/helm helm\
 /opt/cli/helm-v3.11.1-linux-amd64/helm 1983
helm repo add stable https://charts.helm.sh/stable
helm search repo jenkins
helm version

Knowledge

minikube start --cpus 6 --memory 8192
minikube start
export KUBECONFIG=${HOME}/.kube/academia-config.yaml
unset KUBECONFIG
minikube stop
minikube delete

helm repo --help
helm repo list


References