From bc0d6073931b1639a905030ad356ae340c9597f8 Mon Sep 17 00:00:00 2001 From: Mark Beierl Date: Mon, 12 Dec 2022 09:00:59 -0500 Subject: [PATCH] Add missing jq step Installation of jq was moved from common to k8s specific section, so must be replicated for charmed section Change-Id: Ib843314ba9af97cd5be8932926ddd08839b4258a Signed-off-by: Mark Beierl --- installers/full_install_osm.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/installers/full_install_osm.sh b/installers/full_install_osm.sh index 8b7f1d8f..79fb0772 100755 --- a/installers/full_install_osm.sh +++ b/installers/full_install_osm.sh @@ -1223,6 +1223,7 @@ fi # Charmed installation if [ -n "$CHARMED" ]; then + sudo snap install jq || FATAL "Could not install jq (snap package). Make sure that snap works" export OSM_TRACK_INSTALLATION_ID="$(date +%s)-$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 16)" track start release $RELEASE none none docker_tag $OSM_DOCKER_TAG none none installation_type $OSM_INSTALLATION_TYPE none none ${OSM_DEVOPS}/installers/charmed_install.sh --tag $OSM_DOCKER_TAG "$@" || \ -- 2.25.1