From 6d192b71e830163ca55ab3d8ab6d5fc0e248b552 Mon Sep 17 00:00:00 2001 From: David C <145467649+dev-0pz@users.noreply.github.com> Date: Wed, 15 Jul 2026 15:53:04 +0100 Subject: [PATCH] Update bootstrap.sh to install yq via snap Removed installation of 'yq' from apt-get and added it to snap installation. --- bootstrap.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index a6a72c4..3a21690 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -11,11 +11,12 @@ sudo apt-get -o Dpkg::Options::="--force-confold" \ -y -qq upgrade > /dev/null echo "Installing required tools..." -sudo apt-get install -y snapd python3-openstackclient yq +sudo apt-get install -y snapd python3-openstackclient export PATH=$PATH:/snap/bin sudo snap install kubectl --classic sudo snap install helm --classic +sudo snap install yq --classic # Check a clouds.yaml file exists in the same directory as the script if [ ! -f clouds.yaml ]; then