X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=ric-infra%2F20-Monitoring%2Fbin%2Finstall;h=58274bfdbff2e4965446a71e3a968f8f71784a3d;hb=96f1edd267659d09822b64fffa16077e28fcec0b;hp=a714ceea3fb991fc7861f51301752b00cd0e0d85;hpb=112e73d383b26192fea6e320ef3de6ef6bfdca0a;p=it%2Fdep.git diff --git a/ric-infra/20-Monitoring/bin/install b/ric-infra/20-Monitoring/bin/install index a714ceea..58274bfd 100755 --- a/ric-infra/20-Monitoring/bin/install +++ b/ric-infra/20-Monitoring/bin/install @@ -24,10 +24,10 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" source $DIR/../etc/elfkp.conf -if [ -z "$RICAUX_RELEASE_NAME" ];then +if [ -z "$RICINFRA_RELEASE_NAME" ];then RELEASE_NAME=$helm_release_name else - RELEASE_NAME=$RICAUX_RELEASE_NAME + RELEASE_NAME=$RICINFRA_RELEASE_NAME fi # Namespace configuration if [ -z "$RICPLT_NAMESPACE" ];then @@ -61,7 +61,7 @@ fi RICAUX_COMPONENTS="elfkp" -echo "Deploying RIC AUX components [$RICAUX_COMPONENTS]" +echo "Deploying RIC infra components [$RICAUX_COMPONENTS]" echo "Helm Release Name: $RELEASE_NAME" @@ -83,8 +83,8 @@ for component in $RICAUX_COMPONENTS; do #eval "$CMD" if [ -z $OVERRIDEYAML ]; then - helm install --debug --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-$component" $COMMON_OVERRIDE $DIR/../helm/$component + helm install --debug --namespace "${INFRA_NAMESPACE}" --name "${RELEASE_NAME}-$component" $COMMON_OVERRIDE $DIR/../helm/$component else - helm install -f $OVERRIDEYAML --namespace "${NAMESPACE}" --name "${RELEASE_NAME}-$component" $COMMON_OVERRIDE $DIR/../helm/$component + helm install -f $OVERRIDEYAML --namespace "${INFRA_NAMESPACE}" --name "${RELEASE_NAME}-$component" $COMMON_OVERRIDE $DIR/../helm/$component fi done