Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install helm

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
Comment

helm install

$ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
$ chmod 700 get_helm.sh
$ ./get_helm.sh
Comment

installing helm on linux

helm_ver=v3.8.1
wget -qO- https://get.helm.sh/helm-${helm_ver}-linux-amd64.tar.gz | tar zx linux-amd64/helm
sudo mv linux-amd64/helm /usr/local/bin
sudo chmod +x /usr/local/bin/helm
rm -rf linux-amd64
Comment

install helm

curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
Comment

PREVIOUS NEXT
Code Example
Shell :: how to make a tarball in linux 
Shell :: how to run docker not with sudo 
Shell :: install latest angular cli 
Shell :: encrypt zip password 
Shell :: bash load file as array 
Shell :: install npm colors 
Shell :: ssh save password 
Shell :: install jenkins in linux 
Shell :: git stash with a message 
Shell :: centos set permissions on folder recursively 
Shell :: how to combine audio tracks ffmpeg 
Shell :: centos copy folder 
Shell :: directory path view 
Shell :: uninstall all nuget packages 
Shell :: powershell set variable 
Shell :: run mutiple sass files at once 
Shell :: docker-compose build 
Shell :: git get OR show commit date 
Shell :: uninstall nvidia driver ubuntu 
Shell :: shell script to reindex elasticsearch 
Shell :: install bootstrap vue laravel 7 
Shell :: npm list versions of installed packages 
Shell :: gitignore for eclipse 
Shell :: conda install line_profiler 
Shell :: resolve merge conflicts git 
Shell :: brew upgrade all casks 
Shell :: create branch based to other branch ex. master 
Shell :: como instalar brew en linux 
Shell :: how to boot into bios dell 
Shell :: stop apache2 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =