Merge "Correct the command format for helm3 in install script of nonrtric"
authorZhe Huang <zhehuang@research.att.com>
Mon, 11 Jan 2021 14:49:27 +0000 (14:49 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Mon, 11 Jan 2021 14:49:27 +0000 (14:49 +0000)
nonrtric/bin/install

index dbaff47..8008833 100755 (executable)
@@ -72,7 +72,7 @@ helm dep up $DIR/../helm/$PARENT_CHART
 HELM_NAME_OPT=""
 if [ -z $IS_HELM3 ];then
    HELM_NAME_OPT="--name"
-fi     
+fi
 
-helm install $DIR/../helm/"${PARENT_CHART}" -f $OVERRIDEYAML --namespace "${NONRTRIC_NAMESPACE:-nonrtric}" ${HELM_NAME_OPT} "${RELEASE_PREFIX}"
+helm install -f $OVERRIDEYAML --namespace "${NONRTRIC_NAMESPACE:-nonrtric}" ${HELM_NAME_OPT} "${RELEASE_PREFIX}" $DIR/../helm/"${PARENT_CHART}"