aboutsummaryrefslogtreecommitdiffstats
path: root/installation/appc/src/main/scripts/installFeatures.sh
blob: f8214c3489fb1c0cb2dd29bc124ced25923a04ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#!/bin/bash

###
# ============LICENSE_START=======================================================
# APPC
# ================================================================================
# 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.
# You may obtain a copy of the License at
# 
#      http://www.apache.org/licenses/LICENSE-2.0
# 
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============LICENSE_END=========================================================
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
###

ODL_HOME=${ODL_HOME:-/opt/opendaylight/current}
APPC_HOME=${APPC_HOME:-/opt/onap/appc}
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
  cat /tmp/installErr
  if grep -q 'Failed to get the session' /tmp/installErr; then
    sleep 10
  else
    let COUNT=10
  fi
  let COUNT=COUNT+1
done
}
function waitForKaraf {
COUNT=0
while [ $COUNT -lt 20 ]; do
  ${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 \
 onap-appc-metric \
 onap-appc-dmaap-adapter \
 onap-appc-chef-adapter \
 onap-appc-netconf-adapter \
 onap-appc-rest-adapter \
 onap-appc-lifecycle-management \
 onap-appc-license-manager"
 
 APPC_FEATURES_2=" \
 onap-appc-dg-util \
 onap-appc-dg-shared \
 onap-appc-sdc-listener \
 onap-appc-oam \
 onap-appc-iaas-adapter \
 onap-appc-ansible-adapter \
 onap-appc-sequence-generator \
 onap-appc-config-generator \
 onap-appc-config-data-services \
 onap-appc-config-adaptor \
 onap-appc-config-audit \
 onap-appc-config-encryption-tool \
 onap-appc-config-flow-controller \
 onap-appc-config-params"
 
 APPC_FEATURES_3=" \
 onap-appc-artifact-handler \
 onap-appc-aai-client \
 onap-appc-event-listener \
 onap-appc-network-inventory-client \
 onap-appc-design-services \
 onap-appc-interfaces-service"
 
 APPC_FEATURES_UNZIP=" \
 appc-core \
 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 \
 appc-network-inventory-client \
 appc-design-services \
 appc-interfaces-service"
 

 


#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 ""

for feature in ${APPC_FEATURES_UNZIP}
do
  if [ -f ${APPC_FEATURE_DIR}/${feature}/install-feature.sh ]
  then
    ${APPC_FEATURE_DIR}/${feature}/install-feature.sh
  else
    echo "No installer found for feature ${feature}"
  fi
done

for feature in ${APPC_FEATURES_1}
do
  group1Features="${group1Features} ${feature}"
done

  echo "Installing features: ${group1Features}"
  start=$(date +%s)
  ${ODL_HOME}/bin/client "feature:install -r ${group1Features}"
  end=$(date +%s)
  echo "Install of features took $(expr $end - $start) seconds"
  sleep 7s
  echo "Sleep Finished"

  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 onap-appc-provider"
  end=$(date +%s)
  echo "Install of dispatcher features took $(expr $end - $start) seconds"
  sleep 7s
  echo "Sleep Finished"

for feature in ${APPC_FEATURES_2}
do
  group2Features="${group2Features} ${feature}"
done

  echo "Installing features: ${group2Features}"
  start=$(date +%s)
  ${ODL_HOME}/bin/client "feature:install -r ${group2Features}"
  end=$(date +%s)
  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)
  ${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