Ensure helm is part of standard mint tooling.
This commit is contained in:
@ -50,6 +50,18 @@ curl -L "https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:
|
||||
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.
|
||||
|
||||
#+NAME: Install helm
|
||||
#+BEGIN_SRC tmate
|
||||
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
|
||||
#+END_SRC
|
||||
|
||||
|
||||
|
||||
Finally, we should upgrade the python package manger ~pip~ that we installed, before using it to install [[https://github.com/containers/podman-compose][podman-compose]].
|
||||
|
||||
#+NAME: Upgrade pip
|
||||
|
||||
Reference in New Issue
Block a user