X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=installation%2Fappc%2Fsrc%2Fmain%2Fscripts%2FinstallFeatures.sh;h=d26826c3424043a870ff1a3f8e615517aac95bd1;hb=105b7cdfec533c7b9976209af6af73e2f2508512;hp=858ce393723fa99c4249f329caa3e32e6252a595;hpb=7aa0e5d33426ff2b9e92635c38d0041dfd17e687;p=appc%2Fdeployment.git diff --git a/installation/appc/src/main/scripts/installFeatures.sh b/installation/appc/src/main/scripts/installFeatures.sh index 858ce39..d26826c 100644 --- a/installation/appc/src/main/scripts/installFeatures.sh +++ b/installation/appc/src/main/scripts/installFeatures.sh @@ -4,7 +4,7 @@ # ============LICENSE_START======================================================= # APPC # ================================================================================ -# Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. +# Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -28,7 +28,8 @@ APPC_FEATURE_DIR=${APPC_FEATURE_DIR:-${APPC_HOME}/features} function featureInstall { COUNT=0 while [ $COUNT -lt 10 ]; do - ${ODL_HOME}/bin/client feature:install $1 2> /tmp/installErr +sshpass -pkaraf ssh -o StrictHostKeyChecking=no karaf@localhost -p 8101 "feature:install $1" 2> /tmp/installErr +# ${ODL_HOME}/bin/client feature:install $1 2> /tmp/installErr cat /tmp/installErr if grep -q 'Failed to get the session' /tmp/installErr; then sleep 10 @@ -38,25 +39,20 @@ while [ $COUNT -lt 10 ]; do let COUNT=COUNT+1 done } - - APPC_FEATURES=" \ - appc-metric \ - appc-dmaap-adapter \ - appc-chef-adapter \ - appc-netconf-adapter \ - appc-rest-adapter \ - appc-lifecycle-management \ - appc-dispatcher \ - appc-provider \ - appc-dg-util \ - appc-dg-shared \ - appc-sdc-listener \ - appc-oam \ - appc-iaas-adapter \ - appc-ansible-adapter \ - appc-sequence-generator \ - appc-artifact-handler \ - appc-aai-client" +function waitForKaraf { +COUNT=0 +while [ $COUNT -lt 20 ]; do +sshpass -pkaraf ssh -o StrictHostKeyChecking=no karaf@localhost -p 8101 "feature:list $1" 2> /tmp/installErr +# ${ODL_HOME}/bin/client feature:list $1 2> /tmp/installErr + cat /tmp/installErr + if grep -q 'Failed to get the session' /tmp/installErr; then + sleep 10 + else + let COUNT=20 + fi + let COUNT=COUNT+1 +done +} APPC_FEATURES_1=" \ onap-appc-core \ @@ -69,7 +65,6 @@ APPC_FEATURES_1=" \ onap-appc-license-manager" APPC_FEATURES_2=" \ - onap-appc-provider \ onap-appc-dg-util \ onap-appc-dg-shared \ onap-appc-sdc-listener \ @@ -83,7 +78,10 @@ APPC_FEATURES_1=" \ onap-appc-config-audit \ onap-appc-config-encryption-tool \ onap-appc-config-flow-controller \ - onap-appc-config-params \ + onap-appc-config-params" + + APPC_FEATURES_3=" \ + onap-appc-artifact-handler \ onap-appc-aai-client \ onap-appc-event-listener \ onap-appc-network-inventory-client \ @@ -125,12 +123,9 @@ APPC_FEATURES_1=" \ -echo "Enabling core APP-C features" -featureInstall odl-netconf-connector-all -featureInstall odl-restconf-noauth -featureInstall odl-netconf-topology - -sleep 7s +#echo "Enabling core APP-C features" +#featureInstall odl-netconf-connector odl-restconf-noauth odl-netconf-clustered-topology odl-mdsal-clustering +#waitForKaraf echo "Installing APP-C Features" echo "" @@ -144,22 +139,24 @@ do fi done -#${ODL_HOME}/bin/client feature:install appc-metric appc-dmaap-adapter appc-event-listener appc-chef-adapter appc-netconf-adapter appc-rest-adapter appc-lifecycle-management appc-dispatcher appc-provider appc-dg-util appc-dg-shared appc-sdc-listener appc-oam appc-iaas-adapter appc-ansible-adapter appc-sequence-generator appc-config-generator appc-config-data-services appc-config-adaptor appc-config-audit appc-config-encryption-tool appc-config-flow-controller appc-config-params appc-artifact-handler appc-aai-client - for feature in ${APPC_FEATURES_1} do - echo "Installing ${feature}" + group1Features="${group1Features} ${feature}" +done + + echo "Installing features: ${group1Features}" start=$(date +%s) - ${ODL_HOME}/bin/client "feature:install -r ${feature}" +sshpass -pkaraf ssh -o StrictHostKeyChecking=no karaf@localhost -p 8101 "feature:install -r ${group1Features}" +# ${ODL_HOME}/bin/client "feature:install -r ${group1Features}" end=$(date +%s) - echo "Install of ${feature} took $(expr $end - $start) seconds" + echo "Install of features took $(expr $end - $start) seconds" sleep 7s echo "Sleep Finished" -done echo "Installing dispatcher features" start=$(date +%s) - ${ODL_HOME}/bin/client "feature:install -r onap-appc-request-handler onap-appc-command-executor onap-appc-lifecycle-management onap-appc-workflow-management lock-manager" +sshpass -pkaraf ssh -o StrictHostKeyChecking=no karaf@localhost -p 8101 "feature:install -r onap-appc-request-handler onap-appc-command-executor onap-appc-lifecycle-management onap-appc-workflow-management lock-manager onap-appc-provider" +# ${ODL_HOME}/bin/client "feature:install -r onap-appc-request-handler onap-appc-command-executor onap-appc-lifecycle-management onap-appc-workflow-management lock-manager onap-appc-provider" end=$(date +%s) echo "Install of dispatcher features took $(expr $end - $start) seconds" sleep 7s @@ -167,11 +164,33 @@ done for feature in ${APPC_FEATURES_2} do - echo "Installing ${feature}" + group2Features="${group2Features} ${feature}" +done + + echo "Installing features: ${group2Features}" start=$(date +%s) - ${ODL_HOME}/bin/client "feature:install -r ${feature}" +sshpass -pkaraf ssh -o StrictHostKeyChecking=no karaf@localhost -p 8101 "feature:install -r ${group2Features}" +# ${ODL_HOME}/bin/client "feature:install -r ${group2Features}" end=$(date +%s) - echo "Install of ${feature} took $(expr $end - $start) seconds" + echo "Install of features took $(expr $end - $start) seconds" sleep 7s echo "Sleep Finished" + +for feature in ${APPC_FEATURES_3} +do + group3Features="${group3Features} ${feature}" done + + echo "Installing features: ${group3Features}" + start=$(date +%s) +sshpass -pkaraf ssh -o StrictHostKeyChecking=no karaf@localhost -p 8101 "feature:install -r ${group3Features}" +# ${ODL_HOME}/bin/client "feature:install -r ${group3Features}" + end=$(date +%s) + echo "Install of features took $(expr $end - $start) seconds" + sleep 7s + echo "Sleep Finished" + +#Copy json template file for use by the generic restart DG aai fix +mkdir -p /opt/onap/appc/restapi/templates +cp /opt/onap/appc/data/aai-named-query.json /opt/onap/appc/restapi/templates/aai-named-query.json +