From 343733dd9c563d8dbc3add408bd954e9631267f0 Mon Sep 17 00:00:00 2001 From: James Blair Date: Sun, 1 May 2022 09:30:57 +1200 Subject: [PATCH] Ensure helm is part of standard mint tooling. --- mint-setup.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/mint-setup.org b/mint-setup.org index 7e8cbd3..5ae97e7 100644 --- a/mint-setup.org +++ b/mint-setup.org @@ -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