blob: b5455e6dd5d0be69f8485e1d49c58390ec07cff7 [file] [log] [blame]
Joey Armstrong6a9013e2024-02-01 17:56:57 -05001// Copyright 2021-2024 Open Networking Foundation (ONF) and the ONF Contributors
Hardik Windlass0f9621d2021-02-24 21:23:19 +05302//
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.
Hardik Windlass0f9621d2021-02-24 21:23:19 +053014// voltha-2.x e2e tests
15// uses bbsim to simulate OLT/ONUs
Hardik Windlass0f9621d2021-02-24 21:23:19 +053016// NOTE we are importing the library even if it's global so that it's
17// easier to change the keywords during a replay
18library identifier: 'cord-jenkins-libraries@master',
19 retriever: modernSCM([
20 $class: 'GitSCMSource',
21 remote: 'https://gerrit.opencord.org/ci-management.git'
22])
Hardik Windlass317ad022022-02-21 11:18:18 +000023
Joey Armstrongc63186b2023-08-30 12:39:40 -040024// -----------------------------------------------------------------------
25// Intent:
26// -----------------------------------------------------------------------
27String branchName() {
28 String name = 'master'
29
30 // [TODO] Sanity check the target branch
31 // if (name != jenkins.branch) { fatal }
32 return(name)
33}
34
35// -----------------------------------------------------------------------
36// Intent: Due to lack of a reliable stack trace, construct a literal.
37// Jenkins will re-write the call stack for serialization.
38// -----------------------------------------------------------------------
39String getIam(String func) {
40 String branchName = branchName()
41 String src = [
42 'ci-management',
43 'jjb',
44 'pipeline',
45 'voltha',
46 branchName,
47 'software-upgrades.groovy'
48 ].join('/')
49
50 String name = [src, func].join('::')
51 return(name)
52}
53
54// -----------------------------------------------------------------------
Hardik Windlass317ad022022-02-21 11:18:18 +000055// fetches the versions/tags of the voltha component
56// returns the deployment version which is one less than the latest available tag of the repo, first voltha stack gets deployed using this;
57// returns the test version which is the latest tag of the repo, the component upgrade gets tested on this.
58// Note: if there is a major version change between deployment and test tags, then deployment tag will be same as test tag, i.e. both as latest.
Joey Armstrongc63186b2023-08-30 12:39:40 -040059// -----------------------------------------------------------------------
Hardik Windlass8e264492022-03-25 16:15:45 +000060def get_voltha_comp_versions(component, base_deploy_tag) {
Joey Armstrongc63186b2023-08-30 12:39:40 -040061 def comp_test_tag = sh(
62 script: "git ls-remote --refs --tags https://github.com/opencord/${component} | cut --delimiter='/' --fields=3 | tr '-' '~' | sort --version-sort | tail --lines=1 | sed 's/v//'",
63 returnStdout: true
Hardik Windlass317ad022022-02-21 11:18:18 +000064 ).trim()
Joey Armstrongc63186b2023-08-30 12:39:40 -040065 def comp_deploy_tag = sh(
66 script: "git ls-remote --refs --tags https://github.com/opencord/${component} | cut --delimiter='/' --fields=3 | tr '-' '~' | sort --version-sort | tail --lines=2 | head -n 1 | sed 's/v//'",
67 returnStdout: true
Hardik Windlass317ad022022-02-21 11:18:18 +000068 ).trim()
69 def comp_deploy_major = comp_deploy_tag.substring(0, comp_deploy_tag.indexOf('.'))
70 def comp_test_major = comp_test_tag.substring(0, comp_test_tag.indexOf('.'))
Joey Armstrongc63186b2023-08-30 12:39:40 -040071 if ("${comp_deploy_major.trim()}" != "${comp_test_major.trim()}") {
72 comp_deploy_tag = comp_test_tag
Hardik Windlass317ad022022-02-21 11:18:18 +000073 }
Joey Armstrongc63186b2023-08-30 12:39:40 -040074 if ("${comp_test_tag.trim()}" == "${base_deploy_tag.trim()}") {
75 comp_deploy_tag = comp_test_tag
76 comp_test_tag = "master"
Hardik Windlass8e264492022-03-25 16:15:45 +000077 }
Hardik Windlass317ad022022-02-21 11:18:18 +000078 println "${component}: deploy_tag: ${comp_deploy_tag}, test_tag: ${comp_test_tag}"
79 return [comp_deploy_tag, comp_test_tag]
80}
81
Joey Armstrongc63186b2023-08-30 12:39:40 -040082// -----------------------------------------------------------------------
83// -----------------------------------------------------------------------
Hardik Windlass0f9621d2021-02-24 21:23:19 +053084def test_software_upgrade(name) {
Joey Armstrongc63186b2023-08-30 12:39:40 -040085 def infraNamespace = "infra"
86 def volthaNamespace = "voltha"
87 def openolt_adapter_deploy_tag = ''
88 def openolt_adapter_test_tag = ''
89 def openonu_adapter_deploy_tag = ''
90 def openonu_adapter_test_tag = ''
91 def rw_core_deploy_tag = ''
92 def rw_core_test_tag = ''
93 def ofagent_deploy_tag = ''
94 def ofagent_test_tag = ''
95 def logsDir = "$WORKSPACE/${name}"
96 stage('Deploy Voltha - ' + name) {
97 timeout(10) {
98 // start logging
99 sh """
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000100 rm -rf ${logsDir} || true
101 mkdir -p ${logsDir}
102 _TAG=kail-${name} kail -n ${infraNamespace} -n ${volthaNamespace} > ${logsDir}/onos-voltha-startup-combined.log &
Hardik Windlasscb955822021-10-21 14:59:11 +0000103 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400104 def extraHelmFlags = extraHelmFlags.trim()
105 if ("${name}" == "onos-app-upgrade" || "${name}" == "onu-software-upgrade" || "${name}" == "onu-software-upgrade-omci-extended-msg" || "${name}" == "voltha-component-upgrade" || "${name}" == "voltha-component-rolling-upgrade") {
106 extraHelmFlags = " --set global.log_level=${logLevel.toUpperCase()},onu=1,pon=1 --set onos-classic.replicas=3,onos-classic.atomix.replicas=3 " + extraHelmFlags
107 }
108 if ("${name}" == "onu-software-upgrade" || "${name}" == "onu-software-upgrade-omci-extended-msg") {
109 extraHelmFlags = " --set global.extended_omci_support.enabled=true " + extraHelmFlags
110 }
111 if ("${name}" == "onu-software-upgrade-omci-extended-msg") {
112 extraHelmFlags = " --set omccVersion=180 " + extraHelmFlags
113 }
114 if ("${name}" == "onu-image-dwl-simultaneously") {
115 extraHelmFlags = " --set global.log_level=${logLevel.toUpperCase()},onu=2,pon=2 --set onos-classic.replicas=3,onos-classic.atomix.replicas=3 " + extraHelmFlags
116 }
117 if ("${name}" == "onos-app-upgrade" || "${name}" == "onu-software-upgrade" || "${name}" == "onu-software-upgrade-omci-extended-msg" || "${name}" == "onu-image-dwl-simultaneously") {
118 extraHelmFlags = " --set global.image_tag=master --set onos-classic.image.tag=master " + extraHelmFlags
119 }
120 if ("${name}" == "voltha-component-upgrade" || "${name}" == "voltha-component-rolling-upgrade") {
121 extraHelmFlags = " --set images.onos_config_loader.tag=master-onos-config-loader --set onos-classic.image.tag=master " + extraHelmFlags
122 }
123 extraHelmFlags += " --set onos-classic.onosSshPort=30115 --set onos-classic.onosApiPort=30120 "
124 extraHelmFlags += " --set voltha.onos_classic.replicas=3"
125 //ONOS custom image handling
126 if ( onosImg.trim() != '' ) {
127 String[] split;
128 onosImg = onosImg.trim()
129 split = onosImg.split(':')
130 extraHelmFlags += " --set onos-classic.image.repository=" + split[0] +",onos-classic.image.tag=" + split[1] + " "
131 }
132 Integer olts = 1
133 if ("${name}" == 'onu-image-dwl-simultaneously') {
134 olts = 2
135 }
136 if ("${name}" == 'voltha-component-upgrade' || "${name}" == 'voltha-component-rolling-upgrade') {
137 // fetch voltha components versions/tags
138 (openolt_adapter_deploy_tag, openolt_adapter_test_tag) = get_voltha_comp_versions('voltha-openolt-adapter', openoltAdapterDeployBaseTag.trim())
139 extraHelmFlags += " --set voltha-adapter-openolt.images.adapter_open_olt.tag=${openolt_adapter_deploy_tag} "
140 (openonu_adapter_deploy_tag, openonu_adapter_test_tag) = get_voltha_comp_versions('voltha-openonu-adapter-go', openonuAdapterDeployBaseTag.trim())
141 extraHelmFlags += " --set voltha-adapter-openonu.images.adapter_open_onu_go.tag=${openonu_adapter_deploy_tag} "
142 (rw_core_deploy_tag, rw_core_test_tag) = get_voltha_comp_versions('voltha-go', rwCoreDeployBaseTag.trim())
143 extraHelmFlags += " --set voltha.images.rw_core.tag=${rw_core_deploy_tag} "
144 (ofagent_deploy_tag, ofagent_test_tag) = get_voltha_comp_versions('ofagent-go', ofagentDeployBaseTag.trim())
145 extraHelmFlags += " --set voltha.images.ofagent.tag=${ofagent_deploy_tag} "
146 }
147 def localCharts = false
148 // Currently only testing with ATT workflow
149 // TODO: Support for other workflows
150 volthaDeploy([bbsimReplica: olts.toInteger(), workflow: 'att', extraHelmFlags: extraHelmFlags, localCharts: localCharts])
151 // stop logging
152 sh """
Hardik Windlasscb955822021-10-21 14:59:11 +0000153 P_IDS="\$(ps e -ww -A | grep "_TAG=kail-${name}" | grep -v grep | awk '{print \$1}')"
154 if [ -n "\$P_IDS" ]; then
155 echo \$P_IDS
156 for P_ID in \$P_IDS; do
157 kill -9 \$P_ID
158 done
159 fi
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000160 cd ${logsDir}
Hardik Windlasscb955822021-10-21 14:59:11 +0000161 gzip -k onos-voltha-startup-combined.log
162 rm onos-voltha-startup-combined.log
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530163 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400164 // forward ONOS and VOLTHA ports
165 sh('''
Andrea Campanella1b7c0942021-09-14 11:02:58 +0200166 JENKINS_NODE_COOKIE="dontKillMe" _TAG=onos-port-forward /bin/bash -c "while true; do kubectl -n infra port-forward --address 0.0.0.0 service/voltha-infra-onos-classic-hs 8101:8101; done 2>&1 " &
167 JENKINS_NODE_COOKIE="dontKillMe" _TAG=onos-port-forward /bin/bash -c "while true; do kubectl -n infra port-forward --address 0.0.0.0 service/voltha-infra-onos-classic-hs 8181:8181; done 2>&1 " &
Joey Armstrongc63186b2023-08-30 12:39:40 -0400168 ''')
169 sh('''
Andrea Campanella9eeb4e72021-03-19 10:00:43 +0100170 sshpass -e ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 log:set DEBUG org.opencord
Joey Armstrongc63186b2023-08-30 12:39:40 -0400171 ''')
172 }
Matteo Scandolo4b040342021-10-08 14:26:06 -0700173 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400174
175 stage('Test - ' + name) {
176 timeout(75) {
177 sh """
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530178 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/${name}"
179 mkdir -p \$ROBOT_LOGS_DIR
180 if [[ ${name} == 'onos-app-upgrade' ]]; then
181 export ONOS_APPS_UNDER_TEST+=''
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530182 if [ ${aaaVer.trim()} != '' ] && [ ${aaaOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530183 ONOS_APPS_UNDER_TEST+="org.opencord.aaa,${aaaVer.trim()},${aaaOarUrl.trim()}*"
184 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530185 if [ ${oltVer.trim()} != '' ] && [ ${oltOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530186 ONOS_APPS_UNDER_TEST+="org.opencord.olt,${oltVer.trim()},${oltOarUrl.trim()}*"
187 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530188 if [ ${dhcpl2relayVer.trim()} != '' ] && [ ${dhcpl2relayOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530189 ONOS_APPS_UNDER_TEST+="org.opencord.dhcpl2relay,${dhcpl2relayVer.trim()},${dhcpl2relayOarUrl.trim()}*"
190 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530191 if [ ${igmpproxyVer.trim()} != '' ] && [ ${igmpproxyOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530192 ONOS_APPS_UNDER_TEST+="org.opencord.igmpproxy,${igmpproxyVer.trim()},${igmpproxyOarUrl.trim()}*"
193 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530194 if [ ${sadisVer.trim()} != '' ] && [ ${sadisOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530195 ONOS_APPS_UNDER_TEST+="org.opencord.sadis,${sadisVer.trim()},${sadisOarUrl.trim()}*"
196 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530197 if [ ${mcastVer.trim()} != '' ] && [ ${mcastOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530198 ONOS_APPS_UNDER_TEST+="org.opencord.mcast,${mcastVer.trim()},${mcastOarUrl.trim()}*"
199 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530200 if [ ${kafkaVer.trim()} != '' ] && [ ${kafkaOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530201 ONOS_APPS_UNDER_TEST+="org.opencord.kafka,${kafkaVer.trim()},${kafkaOarUrl.trim()}*"
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530202 fi
203 export ROBOT_MISC_ARGS="-d \$ROBOT_LOGS_DIR -v onos_apps_under_test:\$ONOS_APPS_UNDER_TEST -e PowerSwitch"
204 export TARGET=onos-app-upgrade-test
205 fi
Hardik Windlass1bb96a32022-01-19 10:10:08 +0000206 if [ ${name} == 'voltha-component-upgrade' ] || [ ${name} == 'voltha-component-rolling-upgrade' ]; then
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530207 export VOLTHA_COMPS_UNDER_TEST+=''
Hardik Windlass317ad022022-02-21 11:18:18 +0000208 VOLTHA_COMPS_UNDER_TEST+="adapter-open-olt,adapter-open-olt,voltha/voltha-openolt-adapter:${openolt_adapter_test_tag}*"
209 VOLTHA_COMPS_UNDER_TEST+="adapter-open-onu,adapter-open-onu,voltha/voltha-openonu-adapter-go:${openonu_adapter_test_tag}*"
210 VOLTHA_COMPS_UNDER_TEST+="rw-core,voltha,voltha/voltha-rw-core:${rw_core_test_tag}*"
211 VOLTHA_COMPS_UNDER_TEST+="ofagent,ofagent,voltha/voltha-ofagent-go:${ofagent_test_tag}*"
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530212 export ROBOT_MISC_ARGS="-d \$ROBOT_LOGS_DIR -v voltha_comps_under_test:\$VOLTHA_COMPS_UNDER_TEST -e PowerSwitch"
Hardik Windlass1bb96a32022-01-19 10:10:08 +0000213 fi
214 if [[ ${name} == 'voltha-component-upgrade' ]]; then
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530215 export TARGET=voltha-comp-upgrade-test
216 fi
Hardik Windlass1bb96a32022-01-19 10:10:08 +0000217 if [[ ${name} == 'voltha-component-rolling-upgrade' ]]; then
218 export TARGET=voltha-comp-rolling-upgrade-test
219 fi
TorstenThieme2853e622022-07-06 09:53:30 +0000220 if [ ${name} == 'onu-software-upgrade' ] || [ ${name} == 'onu-software-upgrade-omci-extended-msg' ]; then
Hardik Windlass88814542021-06-22 09:43:46 +0000221 export ROBOT_MISC_ARGS="-d \$ROBOT_LOGS_DIR -v image_version:${onuImageVersion.trim()} -v image_url:${onuImageUrl.trim()} -v image_vendor:${onuImageVendor.trim()} -v image_activate_on_success:${onuImageActivateOnSuccess.trim()} -v image_commit_on_success:${onuImageCommitOnSuccess.trim()} -v image_crc:${onuImageCrc.trim()} -e PowerSwitch"
Hardik Windlass834afbb2021-03-23 11:48:15 +0530222 export TARGET=onu-upgrade-test
223 fi
TorstenThiemecf20f4b2021-11-12 13:38:26 +0000224 if [[ ${name} == 'onu-image-dwl-simultaneously' ]]; then
225 export ROBOT_MISC_ARGS="-d \$ROBOT_LOGS_DIR -v image_version:${onuImageVersion.trim()} -v image_url:${onuImageUrl.trim()} -v image_vendor:${onuImageVendor.trim()} -v image_activate_on_success:${onuImageActivateOnSuccess.trim()} -v image_commit_on_success:${onuImageCommitOnSuccess.trim()} -v image_crc:${onuImageCrc.trim()} -e PowerSwitch"
226 export TARGET=onu-upgrade-test-multiolt-kind-att
227 fi
Hardik Windlass85491a02021-10-21 17:14:37 +0000228 testLogging='False'
Hardik Windlasscb955822021-10-21 14:59:11 +0000229 if [ ${logging} = true ]; then
Hardik Windlass85491a02021-10-21 17:14:37 +0000230 testLogging='True'
Hardik Windlasscb955822021-10-21 14:59:11 +0000231 fi
Jan Klarece1bc812023-09-28 13:15:52 +0200232 export VOLTCONFIG=$HOME/.volt/config
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530233 export KUBECONFIG=$HOME/.kube/kind-config-voltha-minimal
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000234 ROBOT_MISC_ARGS+=" -v ONOS_SSH_PORT:30115 -v ONOS_REST_PORT:30120 -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace} -v container_log_dir:${logsDir} -v logging:\$testLogging"
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530235 # Run the specified tests
236 make -C $WORKSPACE/voltha-system-tests \$TARGET || true
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530237 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400238 // remove port-forwarding
239 sh """
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530240 # remove orphaned port-forward from different namespaces
Andrea Campanella4c8af942021-05-12 10:12:13 +0200241 ps aux | grep port-forw | grep -v grep | awk '{print \$2}' | xargs --no-run-if-empty kill -9 || true
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530242 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400243 // collect pod details
244 get_pods_info("$WORKSPACE/${name}")
245 sh """
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000246 set +e
247 # collect logs collected in the Robot Framework StartLogging keyword
248 cd ${logsDir}
249 gzip *-combined.log || true
250 rm *-combined.log || true
251 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400252 helmTeardown(['infra', 'voltha'])
253 }
Matteo Scandolo4b040342021-10-08 14:26:06 -0700254 }
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530255}
Joey Armstrongc63186b2023-08-30 12:39:40 -0400256
257// -----------------------------------------------------------------------
258// -----------------------------------------------------------------------
259void get_pods_info(dest) {
260 // collect pod details, this is here in case of failure
261 sh """
Hardik Windlass3db9adf2021-03-25 15:49:45 +0530262 mkdir -p ${dest} || true
Hardik Windlass428f5132021-03-15 12:17:47 +0530263 kubectl get pods --all-namespaces -o wide > ${dest}/pods.txt || true
264 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee ${dest}/pod-images.txt || true
265 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee ${dest}/pod-imagesId.txt || true
Andrea Campanellaea2379a2021-03-22 13:56:26 +0100266 kubectl describe pods --all-namespaces -l app.kubernetes.io/part-of=voltha > ${dest}/voltha-pods-describe.txt
267 kubectl describe pods -n infra -l app=onos-classic > ${dest}/onos-pods-describe.txt
Hardik Windlass428f5132021-03-15 12:17:47 +0530268 helm ls --all-namespaces > ${dest}/helm-charts.txt
269 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400270 sh '''
Andrea Campanella5764e182021-03-18 14:17:59 +0100271 # copy the ONOS logs directly from the container to avoid the color codes
Andrea Campanella188e50d2022-01-14 11:30:05 +0100272 printf '%s\\n' $(kubectl get pods -n infra -l app=onos-classic -o=jsonpath="{.items[*]['metadata.name']}") | xargs --no-run-if-empty -I# bash -c 'kubectl -n infra cp #:apache-karaf-4.2.14/data/log/karaf.log ''' + dest + '''/#.log' || true
Andrea Campanella5764e182021-03-18 14:17:59 +0100273 '''
Joey Armstrongc63186b2023-08-30 12:39:40 -0400274 return
Hardik Windlass428f5132021-03-15 12:17:47 +0530275}
Joey Armstrongc63186b2023-08-30 12:39:40 -0400276
277// -----------------------------------------------------------------------
278// -----------------------------------------------------------------------
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530279pipeline {
Joey Armstrongc63186b2023-08-30 12:39:40 -0400280 /* no label, executor is determined by JJB */
281 agent {
282 label "${params.buildNode}"
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530283 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400284
285 options {
286 timeout(time: 220, unit: 'MINUTES')
Hardik Windlass834afbb2021-03-23 11:48:15 +0530287 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400288
289 environment {
290 PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
291 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
292 SSHPASS="karaf"
Hardik Windlass9f5bee12021-05-07 06:47:21 +0000293 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400294
295 stages {
296 stage('Download Code') {
297 steps {
298 getVolthaCode([
299 branch: "${branch}",
300 volthaSystemTestsChange: "${volthaSystemTestsChange}",
301 volthaHelmChartsChange: "${volthaHelmChartsChange}",
302 ])
303 }
304 }
305
306 // -----------------------------------------------------------------------
307 // -----------------------------------------------------------------------
308 stage('Install Tools')
309 {
310 steps
311 {
312 script
313 {
314 String iam = getIam('Install Kind')
315 println("${iam}: ENTER")
316 installKind("$branch") // needed early by stage(Cleanup)
317 println("${iam}: LEAVE")
318 } // script
319 } // steps
320 } // stage
321
322 // -----------------------------------------------------------------------
323 // -----------------------------------------------------------------------
324 stage('Cleanup') {
325 steps {
326 // remove port-forwarding
327 sh(label : 'Remove port forwarding',
328 script : """
329if [[ \$(pgrep --count 'port-forw') -gt 0 ]]; then
330 pkill --uid "\$(id -u)" --echo --full 'port-forw'
331fi
332""")
333 helmTeardown(['infra', 'voltha'])
334 }
335 }
336
337 // -----------------------------------------------------------------------
338 // -----------------------------------------------------------------------
339 stage('Create K8s Cluster') {
340 steps {
341 createKubernetesCluster([nodes: 3])
342 }
343 }
344
345 // -----------------------------------------------------------------------
346 // -----------------------------------------------------------------------
347 stage('Run Test') {
348 steps {
349 test_software_upgrade('onos-app-upgrade')
350 test_software_upgrade('voltha-component-upgrade')
351 test_software_upgrade('voltha-component-rolling-upgrade')
352 test_software_upgrade('onu-software-upgrade')
353 test_software_upgrade('onu-software-upgrade-omci-extended-msg')
354 test_software_upgrade('onu-image-dwl-simultaneously')
355 }
356 }
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530357 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400358
359 // -----------------------------------------------------------------------
360 // -----------------------------------------------------------------------
361 post {
362 aborted {
363 get_pods_info("$WORKSPACE/failed")
364 }
365 failure {
366 get_pods_info("$WORKSPACE/failed")
367 }
368 always {
369 step([$class: 'RobotPublisher',
370 disableArchiveOutput: false,
371 logFileName: 'RobotLogs/*/log*.html',
372 otherFiles: '',
373 outputFileName: 'RobotLogs/*/output*.xml',
374 outputPath: '.',
375 passThreshold: 100,
376 reportFileName: 'RobotLogs/*/report*.html',
377 unstableThreshold: 0,
378 onlyCritical: true])
379 archiveArtifacts artifacts: '*.log,**/*.log,**/*.gz,*.gz,*.txt,**/*.txt'
380 } // always
381 } // post
382} // pipeline