From: josephthaliath Date: Wed, 5 Apr 2023 16:58:15 +0000 (+0530) Subject: installation support for ubuntu 20.04, 22.04 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=757b7c6a3384fca67510ca1982a2a57c786feb32;p=aiml-fw%2Faimlfw-dep.git installation support for ubuntu 20.04, 22.04 Issue-Id: AIMLFW-42 Signed-off-by: josephthaliath Change-Id: I535d4fa04f316155519ba8c33d64ce43a799aaab --- diff --git a/bin/install.sh b/bin/install.sh index c305466..d00133a 100755 --- a/bin/install.sh +++ b/bin/install.sh @@ -76,7 +76,7 @@ COMPONENTS="tm data-extraction kfadapter aiml-dashboard aiml-notebook" for component in $COMPONENTS; do - sudo helm dep up helm/$component + helm dep up helm/$component echo "Installing $component" helm install $component helm/$component -f $OVERRIDEYAML done diff --git a/bin/install_common_templates_to_helm.sh b/bin/install_common_templates_to_helm.sh index 88e8c10..22fec3e 100755 --- a/bin/install_common_templates_to_helm.sh +++ b/bin/install_common_templates_to_helm.sh @@ -28,7 +28,7 @@ echo ${HELM_REPOSITORY_CACHE} curl -LO https://get.helm.sh/chartmuseum-v0.15.0-linux-386.tar.gz tar xzvf chartmuseum-v0.15.0-linux-386.tar.gz chmod +x ./linux-386/chartmuseum -cp ./linux-386/chartmuseum /usr/local/bin +sudo cp ./linux-386/chartmuseum /usr/local/bin helm servecm --port=8879 --context-path=/charts --storage local --storage-local-rootdir $HELM_REPOSITORY_CACHE/local/ <