X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=bin%2Fdeploy-ric-infra;h=14b3ac42a67c43ab1cbe4dbc1fa0a8072c11acf1;hb=refs%2Fchanges%2F34%2F1234%2F9;hp=a5cb94bef4fdbbd664abfd70ab93720c1a9f08e6;hpb=2df61c2fcf64b32ecf7f064ef9cbbe6b54a15bc0;p=it%2Fdep.git diff --git a/bin/deploy-ric-infra b/bin/deploy-ric-infra index a5cb94be..14b3ac42 100755 --- a/bin/deploy-ric-infra +++ b/bin/deploy-ric-infra @@ -54,10 +54,12 @@ ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" CHARTMUSEUM_BLOCK=$(cat $OVERRIDEYAML | awk '/^chartmuseum:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}') ELFKP_BLOCK=$(cat $OVERRIDEYAML | awk '/^elfkp:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}') K8S_BLOCK=$(cat $OVERRIDEYAML | awk '/^k8s:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}') +ESREADER_BLOCK=$(cat $OVERRIDEYAML | awk '/^esreader:/{getline; while ($0 ~ /^ +.*|^ *$/) {print $0; if (getline == 0) {break}}}') USE_LOCAL_HELM_REPO=$(echo "$CHARTMUSEUM_BLOCK" | grep "enable" | awk '{print $2}') DEPLOY_K8S=$(echo "$K8S_BLOCK" | grep "enable" | awk '{print $2}') DEPLOY_K8S_MONITORING=$(echo "$ELFKP_BLOCK" | grep "enable" | awk '{print $2}') +DEPLOY_ESREADER=$(echo "$ESREADER_BLOCK" | grep "enable" | awk 'NR==1 {print $2}') for component in $ROOT_DIR/../ric-infra/*/; do @@ -79,6 +81,11 @@ for component in $ROOT_DIR/../ric-infra/*/; do . $component/bin/install -f $OVERRIDEYAML fi ;; + 25-ESReader) + if [ "$DEPLOY_ESREADER" == "true" ];then + . $component/bin/install -f $OVERRIDEYAML + fi + ;; 30-Kong) . $component/bin/install -f $OVERRIDEYAML sleep 5