Compare commits
2 Commits
cc0eb52561
...
f95eed937c
| Author | SHA1 | Date | |
|---|---|---|---|
| f95eed937c | |||
| 216df269ed |
2
.bashrc
2
.bashrc
@ -154,7 +154,7 @@ function e {
|
||||
|
||||
# Configure go location
|
||||
export PATH=$PATH:/usr/local/go/bin
|
||||
export PATH=$PATH:/home/$USER/go/bin/
|
||||
export PATH=$PATH:/home/$USER/Downloads/go/bin/
|
||||
|
||||
# Setup prompt
|
||||
function color_my_prompt {
|
||||
|
||||
10
setup.org
10
setup.org
@ -43,13 +43,15 @@ sudo apt update && sudo apt --yes install podman
|
||||
#+end_src
|
||||
|
||||
|
||||
When working with kubernetes applications we often use [[https://helm.sh][helm]], unfortunately we need an extra ~apt~ repository for this so let's add that now and install.
|
||||
When working with kubernetes applications we often use [[https://helm.sh][helm]], let's download and install the latest release from github.
|
||||
|
||||
#+NAME: Install helm
|
||||
#+BEGIN_src tmux
|
||||
curl https://baltocdn.com/helm/signing.asc | sudo apt-key add -
|
||||
echo "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
|
||||
sudo apt-get update && sudo apt install -y helm
|
||||
wget $(sed 's/.\{1\}$//' <<< $(curl -s https://api.github.com/repos/helm/helm/releases/latest | grep -oP 'https...get.helm.sh.helm-v\d+.\d+.\d+-linux-amd64.tar.gz[)]'))
|
||||
|
||||
tar xf helm*.tar.gz linux-amd64/helm --transform 's,linux-amd64,,' && rm -rf helm-*linux-amd64.tar.gz
|
||||
|
||||
sudo mv helm /usr/local/bin/helm
|
||||
#+END_SRC
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user