Hardik Windlass | 868475f | 2021-12-16 16:47:39 +0000 | [diff] [blame] | 1 | // Copyright 2017-present Open Networking Foundation |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | // used to deploy VOLTHA and configure ONOS physical PODs |
| 16 | |
| 17 | // NOTE we are importing the library even if it's global so that it's |
| 18 | // easier to change the keywords during a replay |
| 19 | library identifier: 'cord-jenkins-libraries@master', |
| 20 | retriever: modernSCM([ |
| 21 | $class: 'GitSCMSource', |
| 22 | remote: 'https://gerrit.opencord.org/ci-management.git' |
| 23 | ]) |
| 24 | |
| 25 | def infraNamespace = "infra" |
| 26 | def volthaNamespace = "voltha" |
| 27 | |
| 28 | def deploy_custom_oltAdapterChart(namespace, name, chart, extraHelmFlags) { |
| 29 | sh """ |
| 30 | helm install --create-namespace --set defaults.image_pullPolicy=Always --namespace ${namespace} ${extraHelmFlags} ${name} ${chart} |
| 31 | """ |
| 32 | } |
| 33 | |
| 34 | pipeline { |
| 35 | |
| 36 | /* no label, executor is determined by JJB */ |
| 37 | agent { |
| 38 | label "${params.buildNode}" |
| 39 | } |
| 40 | options { |
| 41 | timeout(time: 35, unit: 'MINUTES') |
| 42 | } |
| 43 | environment { |
| 44 | PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin" |
| 45 | KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf" |
| 46 | } |
| 47 | |
| 48 | stages{ |
| 49 | stage('Download Code') { |
| 50 | steps { |
| 51 | getVolthaCode([ |
| 52 | branch: "${branch}", |
| 53 | volthaSystemTestsChange: "${volthaSystemTestsChange}", |
| 54 | volthaHelmChartsChange: "${volthaHelmChartsChange}", |
| 55 | ]) |
| 56 | } |
| 57 | } |
| 58 | stage ("Parse deployment configuration file") { |
| 59 | steps { |
| 60 | sh returnStdout: true, script: "rm -rf ${configBaseDir}" |
| 61 | sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}" |
| 62 | script { |
| 63 | if ( params.workFlow == "DT" ) { |
| 64 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml" |
| 65 | } |
| 66 | else if ( params.workFlow == "TT" ) |
| 67 | { |
| 68 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml" |
| 69 | } |
| 70 | else |
| 71 | { |
| 72 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml" |
| 73 | } |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | stage('Clean up') { |
| 78 | steps { |
| 79 | timeout(15) { |
| 80 | script { |
| 81 | helmTeardown(["default", infraNamespace, volthaNamespace]) |
| 82 | } |
| 83 | timeout(1) { |
| 84 | sh returnStdout: false, script: ''' |
| 85 | # remove orphaned port-forward from different namespaces |
| 86 | ps aux | grep port-forw | grep -v grep | awk '{print $2}' | xargs --no-run-if-empty kill -9 || true |
| 87 | ''' |
| 88 | } |
| 89 | } |
| 90 | } |
| 91 | } |
| 92 | stage('Install Voltha') { |
| 93 | steps { |
| 94 | timeout(20) { |
| 95 | installVoltctl("${branch}") |
| 96 | script { |
| 97 | // if we're downloading a voltha-helm-charts patch, then install from a local copy of the charts |
| 98 | def localCharts = false |
| 99 | if (volthaHelmChartsChange != "") { |
| 100 | localCharts = true |
| 101 | } |
| 102 | |
| 103 | // should the config file be suffixed with the workflow? see "deployment_config" |
| 104 | def localHelmFlags = "-f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/voltha/${configFileName}.yml --set global.log_level=${logLevel} " |
| 105 | |
| 106 | if (workFlow.toLowerCase() == "dt") { |
| 107 | localHelmFlags += " --set radius.enabled=false " |
| 108 | } |
| 109 | if (workFlow.toLowerCase() == "tt") { |
| 110 | localHelmFlags += " --set radius.enabled=false --set global.incremental_evto_update=true " |
| 111 | if (enableMultiUni.toBoolean()) { |
| 112 | localHelmFlags += " --set voltha-adapter-openonu.adapter_open_onu.uni_port_mask=${uniPortMask} " |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | // NOTE temporary workaround expose ONOS node ports (pod-config needs to be updated to contain these values) |
| 117 | // and to connect the ofagent to all instances of ONOS |
| 118 | localHelmFlags = localHelmFlags + " --set onos-classic.onosSshPort=30115 " + |
| 119 | "--set onos-classic.onosApiPort=30120 " + |
| 120 | "--set onos-classic.onosOfPort=31653 " + |
| 121 | "--set onos-classic.individualOpenFlowNodePorts=true " + |
| 122 | "--set voltha.onos_classic.replicas=${params.NumOfOnos}" |
| 123 | |
| 124 | if (bbsimReplicas.toInteger() != 0) { |
| 125 | localHelmFlags = localHelmFlags + " --set onu=${onuNumber},pon=${ponNumber} " |
| 126 | } |
| 127 | |
| 128 | // adding user specified helm flags at the end so they'll have priority over everything else |
| 129 | localHelmFlags = localHelmFlags + " ${extraHelmFlags}" |
| 130 | |
| 131 | def numberOfAdaptersToWait = 2 |
| 132 | |
| 133 | if(openoltAdapterChart != "onf/voltha-adapter-openolt") { |
| 134 | localHelmFlags = localHelmFlags + " --set voltha-adapter-openolt.enabled=false" |
| 135 | // We skip waiting for adapters in the volthaDeploy step because it's already waiting for |
| 136 | // both of them after the deployment of the custom olt adapter. See line 156. |
| 137 | numberOfAdaptersToWait = 0 |
| 138 | } |
| 139 | |
| 140 | volthaDeploy([ |
| 141 | workflow: workFlow.toLowerCase(), |
| 142 | extraHelmFlags: localHelmFlags, |
| 143 | localCharts: localCharts, |
| 144 | kubeconfig: "$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf", |
| 145 | onosReplica: params.NumOfOnos, |
| 146 | atomixReplica: params.NumOfAtomix, |
| 147 | kafkaReplica: params.NumOfKafka, |
| 148 | etcdReplica: params.NumOfEtcd, |
| 149 | bbsimReplica: bbsimReplicas.toInteger(), |
| 150 | adaptersToWait: numberOfAdaptersToWait, |
| 151 | ]) |
| 152 | |
| 153 | if(openoltAdapterChart != "onf/voltha-adapter-openolt"){ |
| 154 | extraHelmFlags = extraHelmFlags + " --set global.log_level=${logLevel}" |
| 155 | deploy_custom_oltAdapterChart(volthaNamespace, oltAdapterReleaseName, openoltAdapterChart, extraHelmFlags) |
| 156 | waitForAdapters([ |
| 157 | adaptersToWait: 2 |
| 158 | ]) |
| 159 | } |
| 160 | } |
| 161 | sh """ |
| 162 | JENKINS_NODE_COOKIE="dontKillMe" _TAG="voltha-api" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${volthaNamespace} svc/voltha-voltha-api 55555:55555; done"& |
| 163 | JENKINS_NODE_COOKIE="dontKillMe" _TAG="etcd" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${infraNamespace} svc/voltha-infra-etcd ${params.VolthaEtcdPort}:2379; done"& |
| 164 | JENKINS_NODE_COOKIE="dontKillMe" _TAG="kafka" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${infraNamespace} svc/voltha-infra-kafka 9092:9092; done"& |
| 165 | ps aux | grep port-forward |
| 166 | """ |
| 167 | getPodsInfo("$WORKSPACE") |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 | stage('Push Tech-Profile') { |
| 172 | steps { |
| 173 | script { |
| 174 | if ( params.configurePod && params.profile != "Default" ) { |
| 175 | for(int i=0; i < deployment_config.olts.size(); i++) { |
| 176 | def tech_prof_directory = "XGS-PON" |
| 177 | if (deployment_config.olts[i].containsKey("board_technology")){ |
| 178 | tech_prof_directory = deployment_config.olts[i]["board_technology"] |
| 179 | } |
| 180 | timeout(1) { |
| 181 | sh returnStatus: true, script: """ |
| 182 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 183 | etcd_container=\$(kubectl get pods -n ${infraNamespace} -l app.kubernetes.io/name=etcd --no-headers | awk 'NR==1{print \$1}') |
| 184 | if [[ "${workFlow}" == "TT" ]]; then |
| 185 | if [[ "${params.enableMultiUni}" == "true" ]]; then |
| 186 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/TechProfile-TT-multi-uni-HSIA.json \$etcd_container:/tmp/hsia.json |
| 187 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/hsia.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/${tech_prof_directory}/64' |
| 188 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/TechProfile-TT-multi-uni-VoIP.json \$etcd_container:/tmp/voip.json |
| 189 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/voip.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/${tech_prof_directory}/65' |
| 190 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/TechProfile-TT-multi-uni-MCAST-AdditionalBW-None.json \$etcd_container:/tmp/mcast_additionalBW_none.json |
| 191 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/mcast_additionalBW_none.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/${tech_prof_directory}/66' |
| 192 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/TechProfile-TT-multi-uni-MCAST-AdditionalBW-NA.json \$etcd_container:/tmp/mcast_additionalBW_na.json |
| 193 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/mcast_additionalBW_na.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/${tech_prof_directory}/67' |
| 194 | else |
| 195 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/TechProfile-TT-HSIA.json \$etcd_container:/tmp/hsia.json |
| 196 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/hsia.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/${tech_prof_directory}/64' |
| 197 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/TechProfile-TT-VoIP.json \$etcd_container:/tmp/voip.json |
| 198 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/voip.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/${tech_prof_directory}/65' |
| 199 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/TechProfile-TT-MCAST-AdditionalBW-None.json \$etcd_container:/tmp/mcast_additionalBW_none.json |
| 200 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/mcast_additionalBW_none.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/${tech_prof_directory}/66' |
| 201 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/TechProfile-TT-MCAST-AdditionalBW-NA.json \$etcd_container:/tmp/mcast_additionalBW_na.json |
| 202 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/mcast_additionalBW_na.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/${tech_prof_directory}/67' |
| 203 | fi |
| 204 | else |
| 205 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/TechProfile-${profile}.json \$etcd_container:/tmp/flexpod.json |
| 206 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/flexpod.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/${tech_prof_directory}/64' |
| 207 | fi |
| 208 | """ |
| 209 | } |
| 210 | timeout(1) { |
| 211 | sh returnStatus: true, script: """ |
| 212 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 213 | etcd_container=\$(kubectl get pods -n ${infraNamespace} -l app.kubernetes.io/name=etcd --no-headers | awk 'NR==1{print \$1}') |
| 214 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/${tech_prof_directory}/64' |
| 215 | """ |
| 216 | } |
| 217 | } |
| 218 | } |
| 219 | } |
| 220 | } |
| 221 | } |
| 222 | stage('Push MIB templates') { |
| 223 | steps { |
| 224 | sh """ |
| 225 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 226 | etcd_container=\$(kubectl get pods -n ${infraNamespace} -l app.kubernetes.io/name=etcd --no-headers | awk 'NR==1{print \$1}') |
| 227 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/MIB_Alpha.json \$etcd_container:/tmp/MIB_Alpha.json |
| 228 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/MIB_Alpha.json | ETCDCTL_API=3 etcdctl put service/voltha/omci_mibs/go_templates/BRCM/BVM4K00BRA0915-0083/5023_020O02414' |
| 229 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/MIB_Alpha.json | ETCDCTL_API=3 etcdctl put service/voltha/omci_mibs/templates/BRCM/BVM4K00BRA0915-0083/5023_020O02414' |
| 230 | kubectl cp -n ${infraNamespace} $WORKSPACE/voltha-system-tests/tests/data/MIB_Scom.json \$etcd_container:/tmp/MIB_Scom.json |
| 231 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/MIB_Scom.json | ETCDCTL_API=3 etcdctl put service/voltha/omci_mibs/go_templates/SCOM/Glasfaser-Modem/090140.1.0.304' |
| 232 | kubectl exec -n ${infraNamespace} -it \$etcd_container -- /bin/sh -c 'cat /tmp/MIB_Scom.json | ETCDCTL_API=3 etcdctl put service/voltha/omci_mibs/templates/SCOM/Glasfaser-Modem/090140.1.0.304' |
| 233 | """ |
| 234 | } |
| 235 | } |
| 236 | stage('Push Sadis-config') { |
| 237 | steps { |
| 238 | timeout(1) { |
| 239 | sh returnStatus: true, script: """ |
| 240 | if [[ "${workFlow}" == "DT" ]]; then |
| 241 | curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @$WORKSPACE/voltha-system-tests/tests/data/${configFileName}-sadis-DT.json |
| 242 | elif [[ "${workFlow}" == "TT" ]]; then |
| 243 | curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @$WORKSPACE/voltha-system-tests/tests/data/${configFileName}-sadis-TT.json |
| 244 | else |
| 245 | # this is the ATT case, rename the file in *-sadis-ATT.json so that we can avoid special cases and just load the file |
| 246 | curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @$WORKSPACE/voltha-system-tests/tests/data/${configFileName}-sadis.json |
| 247 | fi |
| 248 | """ |
| 249 | } |
| 250 | } |
| 251 | } |
| 252 | stage('Switch Configurations in ONOS') { |
| 253 | steps { |
| 254 | script { |
| 255 | if ( deployment_config.fabric_switches.size() > 0 ) { |
| 256 | timeout(1) { |
| 257 | def netcfg = "$WORKSPACE/${configBaseDir}/${configToscaDir}/voltha/${configFileName}-onos-netcfg-switch.json" |
| 258 | if (params.inBandManagement){ |
| 259 | netcfg = "$WORKSPACE/${configBaseDir}/${configToscaDir}/voltha/${configFileName}-onos-netcfg-switch-inband.json" |
| 260 | } |
| 261 | sh """ |
| 262 | curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @${netcfg} |
| 263 | curl -sSL --user karaf:karaf -X POST http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting/active |
| 264 | """ |
| 265 | } |
| 266 | timeout(1) { |
| 267 | setOnosLogLevels([ |
| 268 | onosNamespace: infraNamespace, |
| 269 | apps: [ |
| 270 | 'org.opencord.dhcpl2relay', |
| 271 | 'org.opencord.olt', |
| 272 | 'org.opencord.aaa', |
| 273 | 'org.onosproject.net.flowobjective.impl.FlowObjectiveManager', |
| 274 | 'org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager' |
| 275 | ] |
| 276 | ]) |
| 277 | waitUntil { |
| 278 | sr_active_out = sh returnStatus: true, script: """ |
| 279 | curl -sSL --user karaf:karaf -X GET http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting | jq '.state' | grep ACTIVE |
| 280 | sshpass -p karaf ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@${deployment_config.nodes[0].ip} "cfg set org.onosproject.provider.lldp.impl.LldpLinkProvider enabled false" |
| 281 | sshpass -p karaf ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@${deployment_config.nodes[0].ip} "cfg set org.onosproject.net.flow.impl.FlowRuleManager purgeOnDisconnection false" |
| 282 | sshpass -p karaf ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 30115 karaf@${deployment_config.nodes[0].ip} "cfg set org.onosproject.net.meter.impl.MeterManager purgeOnDisconnection false" |
| 283 | """ |
| 284 | return sr_active_out == 0 |
| 285 | } |
| 286 | } |
| 287 | timeout(5) { |
| 288 | for(int i=0; i < deployment_config.hosts.src.size(); i++) { |
| 289 | for(int j=0; j < deployment_config.olts.size(); j++) { |
| 290 | def aggPort = -1 |
| 291 | if(deployment_config.olts[j].serial == deployment_config.hosts.src[i].olt){ |
| 292 | aggPort = deployment_config.olts[j].aggPort |
| 293 | if(aggPort == -1){ |
| 294 | throw new Exception("Upstream port for the olt is not configured, field aggPort is empty") |
| 295 | } |
| 296 | sh """ |
| 297 | sleep 10 # NOTE why are we sleeping? |
| 298 | curl -X POST --user karaf:karaf --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"deviceId": "${deployment_config.fabric_switches[0].device_id}", "vlanId": "${deployment_config.hosts.src[i].s_tag}", "endpoints": [${deployment_config.fabric_switches[0].bngPort},${aggPort}]}' 'http://${deployment_config.nodes[0].ip}:30120/onos/segmentrouting/xconnect' |
| 299 | """ |
| 300 | } |
| 301 | } |
| 302 | } |
| 303 | } |
| 304 | } |
| 305 | } |
| 306 | } |
| 307 | } |
| 308 | stage('Reinstall OLT software') { |
| 309 | steps { |
| 310 | script { |
| 311 | if ( params.reinstallOlt ) { |
| 312 | for(int i=0; i < deployment_config.olts.size(); i++) { |
| 313 | // NOTE what is oltDebVersion23? is that for VOLTHA-2.3? do we still need this differentiation? |
| 314 | sh returnStdout: true, script: """ |
| 315 | ssh-keyscan -H ${deployment_config.olts[i].sship} >> ~/.ssh/known_hosts |
| 316 | if [ "${params.inBandManagement}" == "true" ]; then |
| 317 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'kill -9 `pgrep -f "[b]ash /opt/openolt/openolt_dev_mgmt_daemon_process_watchdog"` || true' |
| 318 | fi |
| 319 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} "dpkg --install ${deployment_config.olts[i].oltDebVersion}" |
| 320 | sleep 10 |
| 321 | """ |
| 322 | timeout(5) { |
| 323 | waitUntil { |
| 324 | olt_sw_present = sh returnStdout: true, script: """ |
Andrea Campanella | 842cb5d | 2021-12-17 18:33:05 +0100 | [diff] [blame] | 325 | if [[ "${deployment_config.olts[i].oltDebVersion}" == *"asfvolt16"* ]]; then |
Hardik Windlass | 868475f | 2021-12-16 16:47:39 +0000 | [diff] [blame] | 326 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'dpkg --list | grep asfvolt16 | wc -l' |
Andrea Campanella | 842cb5d | 2021-12-17 18:33:05 +0100 | [diff] [blame] | 327 | elif [[ "${deployment_config.olts[i].oltDebVersion}" == *"asgvolt64"* ]]; then |
Hardik Windlass | 868475f | 2021-12-16 16:47:39 +0000 | [diff] [blame] | 328 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'dpkg --list | grep asgvolt64 | wc -l' |
Andrea Campanella | 842cb5d | 2021-12-17 18:33:05 +0100 | [diff] [blame] | 329 | elif [[ "${deployment_config.olts[i].oltDebVersion}" == *"rlt-1600x-w"* ]]; then |
| 330 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'dpkg --list | grep rlt-1600x-w | wc -l' |
| 331 | elif [[ "${deployment_config.olts[i].oltDebVersion}" == *"rlt-1600g-w"* ]]; then |
| 332 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'dpkg --list | grep rlt-1600g-w | wc -l' |
| 333 | elif [[ "${deployment_config.olts[i].oltDebVersion}" == *"rlt-3200g-w"* ]]; then |
| 334 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'dpkg --list | grep rlt-3200g-w | wc -l' |
| 335 | else |
| 336 | echo Unknown Debian package for openolt |
Hardik Windlass | 868475f | 2021-12-16 16:47:39 +0000 | [diff] [blame] | 337 | fi |
| 338 | if (${deployment_config.olts[i].fortygig}); then |
| 339 | if [[ "${params.inBandManagement}" == "true" ]]; then |
| 340 | ssh-keyscan -H ${deployment_config.olts[i].sship} >> ~/.ssh/known_hosts |
| 341 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'mkdir -p /opt/openolt/' |
| 342 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'cp /root/watchdog-script/* /opt/openolt/' |
| 343 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'cp /root/bal_cli_appl/example_user_appl /broadcom' |
| 344 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'cp in-band-startup-script/* /etc/init.d/' |
| 345 | fi |
| 346 | fi |
| 347 | """ |
| 348 | return olt_sw_present.toInteger() > 0 |
| 349 | } |
| 350 | } |
| 351 | } |
| 352 | } |
| 353 | } |
| 354 | } |
| 355 | } |
| 356 | stage('Restart OLT processes') { |
| 357 | steps { |
| 358 | script { |
| 359 | //rebooting OLTs |
| 360 | for(int i=0; i < deployment_config.olts.size(); i++) { |
| 361 | timeout(15) { |
| 362 | sh returnStdout: true, script: """ |
| 363 | ssh-keyscan -H ${deployment_config.olts[i].sship} >> ~/.ssh/known_hosts |
| 364 | sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'rm -f /var/log/openolt.log; rm -f /var/log/dev_mgmt_daemon.log; rm -f /var/log/openolt_process_watchdog.log; reboot > /dev/null &' || true |
| 365 | """ |
| 366 | } |
| 367 | } |
| 368 | sh returnStdout: true, script: """ |
| 369 | sleep ${params.waitTimerForOltUp} |
| 370 | """ |
| 371 | //Checking dev_management_deamon and openoltprocesses |
| 372 | for(int i=0; i < deployment_config.olts.size(); i++) { |
| 373 | if ( params.oltAdapterReleaseName != "open-olt" ) { |
| 374 | timeout(15) { |
| 375 | waitUntil { |
| 376 | devprocess = sh returnStdout: true, script: "sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'ps -ef | grep dev_mgmt_daemon | wc -l'" |
| 377 | return devprocess.toInteger() > 0 |
| 378 | } |
| 379 | } |
| 380 | timeout(15) { |
| 381 | waitUntil { |
| 382 | openoltprocess = sh returnStdout: true, script: "sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].sship} 'ps -ef | grep openolt | wc -l'" |
| 383 | return openoltprocess.toInteger() > 0 |
| 384 | } |
| 385 | } |
| 386 | } |
| 387 | } |
| 388 | } |
| 389 | } |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | post { |
| 394 | aborted { |
| 395 | getPodsInfo("$WORKSPACE/failed") |
| 396 | sh """ |
| 397 | kubectl logs -n voltha -l app.kubernetes.io/part-of=voltha > $WORKSPACE/failed/voltha.log || true |
| 398 | """ |
| 399 | archiveArtifacts artifacts: '**/*.log,**/*.txt' |
| 400 | } |
| 401 | failure { |
| 402 | getPodsInfo("$WORKSPACE/failed") |
| 403 | sh """ |
| 404 | kubectl logs -n voltha -l app.kubernetes.io/part-of=voltha > $WORKSPACE/failed/voltha.logs || true |
| 405 | """ |
| 406 | archiveArtifacts artifacts: '**/*.log,**/*.txt' |
| 407 | } |
| 408 | always { |
| 409 | archiveArtifacts artifacts: '*.txt' |
| 410 | } |
| 411 | } |
| 412 | } |