blob: 19b8a6e9d0df483bce9d95dacf050548d8b6285e [file] [log] [blame]
Joey Armstrong56fdfec2024-03-01 13:43:36 -05001#!/usr/bin/env groovy
2// -----------------------------------------------------------------------
3// Copyright 2021-2024 Open Networking Foundation Contributors
Hardik Windlass0f9621d2021-02-24 21:23:19 +05304//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
Joey Armstrong56fdfec2024-03-01 13:43:36 -050016// -----------------------------------------------------------------------
17// SPDX-FileCopyrightText: 2021-2024 Open Networking Foundation Contributors
18// SPDX-License-Identifier: Apache-2.0
19// -----------------------------------------------------------------------
20// Entropy: 0fcb5ffa-d1a4-11ee-be5e-9f44b7181764
21// -----------------------------------------------------------------------
22// Intent: voltha-2.x e2e tests, uses bbsim to simulate OLT/ONUs
23// -----------------------------------------------------------------------
24// NOTE: we are importing the library even if it's global so that it's
Hardik Windlass0f9621d2021-02-24 21:23:19 +053025// easier to change the keywords during a replay
Joey Armstrong56fdfec2024-03-01 13:43:36 -050026// -----------------------------------------------------------------------
27
Hardik Windlass0f9621d2021-02-24 21:23:19 +053028library identifier: 'cord-jenkins-libraries@master',
29 retriever: modernSCM([
30 $class: 'GitSCMSource',
31 remote: 'https://gerrit.opencord.org/ci-management.git'
32])
Hardik Windlass317ad022022-02-21 11:18:18 +000033
Joey Armstrongc63186b2023-08-30 12:39:40 -040034// -----------------------------------------------------------------------
35// Intent:
36// -----------------------------------------------------------------------
37String branchName() {
38 String name = 'master'
39
40 // [TODO] Sanity check the target branch
41 // if (name != jenkins.branch) { fatal }
42 return(name)
43}
44
45// -----------------------------------------------------------------------
46// Intent: Due to lack of a reliable stack trace, construct a literal.
47// Jenkins will re-write the call stack for serialization.
48// -----------------------------------------------------------------------
49String getIam(String func) {
50 String branchName = branchName()
51 String src = [
52 'ci-management',
53 'jjb',
54 'pipeline',
55 'voltha',
56 branchName,
57 'software-upgrades.groovy'
58 ].join('/')
59
60 String name = [src, func].join('::')
61 return(name)
62}
63
64// -----------------------------------------------------------------------
Hardik Windlass317ad022022-02-21 11:18:18 +000065// fetches the versions/tags of the voltha component
66// returns the deployment version which is one less than the latest available tag of the repo, first voltha stack gets deployed using this;
67// returns the test version which is the latest tag of the repo, the component upgrade gets tested on this.
68// 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 -040069// -----------------------------------------------------------------------
Joey Armstrong5c135fe2024-03-25 16:45:55 -040070// git ls repo: gerrit (source of truth) VS github (mirror)
71// Branch deletions are not mirrored out to github.
72// Always perform checkouts/queries using the gerrit server as added
73// insulation to guard against repository deltas.
74// -----------------------------------------------------------------------
75// [TODO] Revisit logic:
76// o Refactor logic into a standalone shell script.
77// o Redundancy can be removed and a script will be testable.
78// -----------------------------------------------------------------------
Hardik Windlass8e264492022-03-25 16:15:45 +000079def get_voltha_comp_versions(component, base_deploy_tag) {
Joey Armstrongc63186b2023-08-30 12:39:40 -040080 def comp_test_tag = sh(
Joey Armstrong5c135fe2024-03-25 16:45:55 -040081 // 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//'",
82 script: "git ls-remote --refs --tags https://gerrit.opencord.org/${component} | cut --delimiter='/' --fields=3 | tr '-' '~' | sort --version-sort | tail --lines=1 | sed 's/v//'",
Joey Armstrongc63186b2023-08-30 12:39:40 -040083 returnStdout: true
Hardik Windlass317ad022022-02-21 11:18:18 +000084 ).trim()
Joey Armstrongc63186b2023-08-30 12:39:40 -040085 def comp_deploy_tag = sh(
Joey Armstrong5c135fe2024-03-25 16:45:55 -040086 // 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//'",
87 script: "git ls-remote --refs --tags https://gerrit.opencord.org/${component} | cut --delimiter='/' --fields=3 | tr '-' '~' | sort --version-sort | tail --lines=2 | head -n 1 | sed 's/v//'",
Joey Armstrongc63186b2023-08-30 12:39:40 -040088 returnStdout: true
Hardik Windlass317ad022022-02-21 11:18:18 +000089 ).trim()
90 def comp_deploy_major = comp_deploy_tag.substring(0, comp_deploy_tag.indexOf('.'))
91 def comp_test_major = comp_test_tag.substring(0, comp_test_tag.indexOf('.'))
Joey Armstrongc63186b2023-08-30 12:39:40 -040092 if ("${comp_deploy_major.trim()}" != "${comp_test_major.trim()}") {
93 comp_deploy_tag = comp_test_tag
Hardik Windlass317ad022022-02-21 11:18:18 +000094 }
Joey Armstrongc63186b2023-08-30 12:39:40 -040095 if ("${comp_test_tag.trim()}" == "${base_deploy_tag.trim()}") {
96 comp_deploy_tag = comp_test_tag
97 comp_test_tag = "master"
Hardik Windlass8e264492022-03-25 16:15:45 +000098 }
Hardik Windlass317ad022022-02-21 11:18:18 +000099 println "${component}: deploy_tag: ${comp_deploy_tag}, test_tag: ${comp_test_tag}"
100 return [comp_deploy_tag, comp_test_tag]
101}
102
Joey Armstrongc63186b2023-08-30 12:39:40 -0400103// -----------------------------------------------------------------------
104// -----------------------------------------------------------------------
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530105def test_software_upgrade(name) {
Joey Armstrongc63186b2023-08-30 12:39:40 -0400106 def infraNamespace = "infra"
107 def volthaNamespace = "voltha"
108 def openolt_adapter_deploy_tag = ''
109 def openolt_adapter_test_tag = ''
110 def openonu_adapter_deploy_tag = ''
111 def openonu_adapter_test_tag = ''
112 def rw_core_deploy_tag = ''
113 def rw_core_test_tag = ''
114 def ofagent_deploy_tag = ''
115 def ofagent_test_tag = ''
116 def logsDir = "$WORKSPACE/${name}"
117 stage('Deploy Voltha - ' + name) {
118 timeout(10) {
119 // start logging
120 sh """
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000121 rm -rf ${logsDir} || true
122 mkdir -p ${logsDir}
123 _TAG=kail-${name} kail -n ${infraNamespace} -n ${volthaNamespace} > ${logsDir}/onos-voltha-startup-combined.log &
Hardik Windlasscb955822021-10-21 14:59:11 +0000124 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400125 def extraHelmFlags = extraHelmFlags.trim()
126 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") {
127 extraHelmFlags = " --set global.log_level=${logLevel.toUpperCase()},onu=1,pon=1 --set onos-classic.replicas=3,onos-classic.atomix.replicas=3 " + extraHelmFlags
128 }
129 if ("${name}" == "onu-software-upgrade" || "${name}" == "onu-software-upgrade-omci-extended-msg") {
130 extraHelmFlags = " --set global.extended_omci_support.enabled=true " + extraHelmFlags
131 }
132 if ("${name}" == "onu-software-upgrade-omci-extended-msg") {
133 extraHelmFlags = " --set omccVersion=180 " + extraHelmFlags
134 }
135 if ("${name}" == "onu-image-dwl-simultaneously") {
136 extraHelmFlags = " --set global.log_level=${logLevel.toUpperCase()},onu=2,pon=2 --set onos-classic.replicas=3,onos-classic.atomix.replicas=3 " + extraHelmFlags
137 }
138 if ("${name}" == "onos-app-upgrade" || "${name}" == "onu-software-upgrade" || "${name}" == "onu-software-upgrade-omci-extended-msg" || "${name}" == "onu-image-dwl-simultaneously") {
139 extraHelmFlags = " --set global.image_tag=master --set onos-classic.image.tag=master " + extraHelmFlags
140 }
141 if ("${name}" == "voltha-component-upgrade" || "${name}" == "voltha-component-rolling-upgrade") {
142 extraHelmFlags = " --set images.onos_config_loader.tag=master-onos-config-loader --set onos-classic.image.tag=master " + extraHelmFlags
143 }
144 extraHelmFlags += " --set onos-classic.onosSshPort=30115 --set onos-classic.onosApiPort=30120 "
145 extraHelmFlags += " --set voltha.onos_classic.replicas=3"
146 //ONOS custom image handling
147 if ( onosImg.trim() != '' ) {
148 String[] split;
149 onosImg = onosImg.trim()
150 split = onosImg.split(':')
151 extraHelmFlags += " --set onos-classic.image.repository=" + split[0] +",onos-classic.image.tag=" + split[1] + " "
152 }
153 Integer olts = 1
154 if ("${name}" == 'onu-image-dwl-simultaneously') {
155 olts = 2
156 }
157 if ("${name}" == 'voltha-component-upgrade' || "${name}" == 'voltha-component-rolling-upgrade') {
158 // fetch voltha components versions/tags
159 (openolt_adapter_deploy_tag, openolt_adapter_test_tag) = get_voltha_comp_versions('voltha-openolt-adapter', openoltAdapterDeployBaseTag.trim())
160 extraHelmFlags += " --set voltha-adapter-openolt.images.adapter_open_olt.tag=${openolt_adapter_deploy_tag} "
161 (openonu_adapter_deploy_tag, openonu_adapter_test_tag) = get_voltha_comp_versions('voltha-openonu-adapter-go', openonuAdapterDeployBaseTag.trim())
162 extraHelmFlags += " --set voltha-adapter-openonu.images.adapter_open_onu_go.tag=${openonu_adapter_deploy_tag} "
163 (rw_core_deploy_tag, rw_core_test_tag) = get_voltha_comp_versions('voltha-go', rwCoreDeployBaseTag.trim())
164 extraHelmFlags += " --set voltha.images.rw_core.tag=${rw_core_deploy_tag} "
165 (ofagent_deploy_tag, ofagent_test_tag) = get_voltha_comp_versions('ofagent-go', ofagentDeployBaseTag.trim())
166 extraHelmFlags += " --set voltha.images.ofagent.tag=${ofagent_deploy_tag} "
167 }
168 def localCharts = false
169 // Currently only testing with ATT workflow
170 // TODO: Support for other workflows
171 volthaDeploy([bbsimReplica: olts.toInteger(), workflow: 'att', extraHelmFlags: extraHelmFlags, localCharts: localCharts])
172 // stop logging
173 sh """
Hardik Windlasscb955822021-10-21 14:59:11 +0000174 P_IDS="\$(ps e -ww -A | grep "_TAG=kail-${name}" | grep -v grep | awk '{print \$1}')"
175 if [ -n "\$P_IDS" ]; then
176 echo \$P_IDS
177 for P_ID in \$P_IDS; do
178 kill -9 \$P_ID
179 done
180 fi
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000181 cd ${logsDir}
Hardik Windlasscb955822021-10-21 14:59:11 +0000182 gzip -k onos-voltha-startup-combined.log
183 rm onos-voltha-startup-combined.log
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530184 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400185 // forward ONOS and VOLTHA ports
186 sh('''
Andrea Campanella1b7c0942021-09-14 11:02:58 +0200187 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 " &
188 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 -0400189 ''')
190 sh('''
Andrea Campanella9eeb4e72021-03-19 10:00:43 +0100191 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 -0400192 ''')
193 }
Matteo Scandolo4b040342021-10-08 14:26:06 -0700194 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400195
196 stage('Test - ' + name) {
197 timeout(75) {
198 sh """
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530199 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/${name}"
200 mkdir -p \$ROBOT_LOGS_DIR
201 if [[ ${name} == 'onos-app-upgrade' ]]; then
202 export ONOS_APPS_UNDER_TEST+=''
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530203 if [ ${aaaVer.trim()} != '' ] && [ ${aaaOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530204 ONOS_APPS_UNDER_TEST+="org.opencord.aaa,${aaaVer.trim()},${aaaOarUrl.trim()}*"
205 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530206 if [ ${oltVer.trim()} != '' ] && [ ${oltOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530207 ONOS_APPS_UNDER_TEST+="org.opencord.olt,${oltVer.trim()},${oltOarUrl.trim()}*"
208 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530209 if [ ${dhcpl2relayVer.trim()} != '' ] && [ ${dhcpl2relayOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530210 ONOS_APPS_UNDER_TEST+="org.opencord.dhcpl2relay,${dhcpl2relayVer.trim()},${dhcpl2relayOarUrl.trim()}*"
211 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530212 if [ ${igmpproxyVer.trim()} != '' ] && [ ${igmpproxyOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530213 ONOS_APPS_UNDER_TEST+="org.opencord.igmpproxy,${igmpproxyVer.trim()},${igmpproxyOarUrl.trim()}*"
214 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530215 if [ ${sadisVer.trim()} != '' ] && [ ${sadisOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530216 ONOS_APPS_UNDER_TEST+="org.opencord.sadis,${sadisVer.trim()},${sadisOarUrl.trim()}*"
217 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530218 if [ ${mcastVer.trim()} != '' ] && [ ${mcastOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530219 ONOS_APPS_UNDER_TEST+="org.opencord.mcast,${mcastVer.trim()},${mcastOarUrl.trim()}*"
220 fi
Hardik Windlassb360f6e2021-03-09 17:46:21 +0530221 if [ ${kafkaVer.trim()} != '' ] && [ ${kafkaOarUrl.trim()} != '' ]; then
Hardik Windlass98506e72021-03-09 14:29:17 +0530222 ONOS_APPS_UNDER_TEST+="org.opencord.kafka,${kafkaVer.trim()},${kafkaOarUrl.trim()}*"
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530223 fi
224 export ROBOT_MISC_ARGS="-d \$ROBOT_LOGS_DIR -v onos_apps_under_test:\$ONOS_APPS_UNDER_TEST -e PowerSwitch"
225 export TARGET=onos-app-upgrade-test
226 fi
Hardik Windlass1bb96a32022-01-19 10:10:08 +0000227 if [ ${name} == 'voltha-component-upgrade' ] || [ ${name} == 'voltha-component-rolling-upgrade' ]; then
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530228 export VOLTHA_COMPS_UNDER_TEST+=''
Hardik Windlass317ad022022-02-21 11:18:18 +0000229 VOLTHA_COMPS_UNDER_TEST+="adapter-open-olt,adapter-open-olt,voltha/voltha-openolt-adapter:${openolt_adapter_test_tag}*"
230 VOLTHA_COMPS_UNDER_TEST+="adapter-open-onu,adapter-open-onu,voltha/voltha-openonu-adapter-go:${openonu_adapter_test_tag}*"
231 VOLTHA_COMPS_UNDER_TEST+="rw-core,voltha,voltha/voltha-rw-core:${rw_core_test_tag}*"
232 VOLTHA_COMPS_UNDER_TEST+="ofagent,ofagent,voltha/voltha-ofagent-go:${ofagent_test_tag}*"
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530233 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 +0000234 fi
235 if [[ ${name} == 'voltha-component-upgrade' ]]; then
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530236 export TARGET=voltha-comp-upgrade-test
237 fi
Hardik Windlass1bb96a32022-01-19 10:10:08 +0000238 if [[ ${name} == 'voltha-component-rolling-upgrade' ]]; then
239 export TARGET=voltha-comp-rolling-upgrade-test
240 fi
TorstenThieme2853e622022-07-06 09:53:30 +0000241 if [ ${name} == 'onu-software-upgrade' ] || [ ${name} == 'onu-software-upgrade-omci-extended-msg' ]; then
Hardik Windlass88814542021-06-22 09:43:46 +0000242 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 +0530243 export TARGET=onu-upgrade-test
244 fi
TorstenThiemecf20f4b2021-11-12 13:38:26 +0000245 if [[ ${name} == 'onu-image-dwl-simultaneously' ]]; then
246 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"
247 export TARGET=onu-upgrade-test-multiolt-kind-att
248 fi
Hardik Windlass85491a02021-10-21 17:14:37 +0000249 testLogging='False'
Hardik Windlasscb955822021-10-21 14:59:11 +0000250 if [ ${logging} = true ]; then
Hardik Windlass85491a02021-10-21 17:14:37 +0000251 testLogging='True'
Hardik Windlasscb955822021-10-21 14:59:11 +0000252 fi
Jan Klarece1bc812023-09-28 13:15:52 +0200253 export VOLTCONFIG=$HOME/.volt/config
Hardik Windlass25c8ddb2021-03-05 20:26:16 +0530254 export KUBECONFIG=$HOME/.kube/kind-config-voltha-minimal
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000255 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 +0530256 # Run the specified tests
257 make -C $WORKSPACE/voltha-system-tests \$TARGET || true
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530258 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400259 // remove port-forwarding
260 sh """
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530261 # remove orphaned port-forward from different namespaces
Andrea Campanella4c8af942021-05-12 10:12:13 +0200262 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 +0530263 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400264 // collect pod details
265 get_pods_info("$WORKSPACE/${name}")
266 sh """
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000267 set +e
268 # collect logs collected in the Robot Framework StartLogging keyword
269 cd ${logsDir}
270 gzip *-combined.log || true
271 rm *-combined.log || true
272 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400273 helmTeardown(['infra', 'voltha'])
274 }
Matteo Scandolo4b040342021-10-08 14:26:06 -0700275 }
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530276}
Joey Armstrongc63186b2023-08-30 12:39:40 -0400277
278// -----------------------------------------------------------------------
279// -----------------------------------------------------------------------
280void get_pods_info(dest) {
281 // collect pod details, this is here in case of failure
282 sh """
Hardik Windlass3db9adf2021-03-25 15:49:45 +0530283 mkdir -p ${dest} || true
Hardik Windlass428f5132021-03-15 12:17:47 +0530284 kubectl get pods --all-namespaces -o wide > ${dest}/pods.txt || true
285 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee ${dest}/pod-images.txt || true
286 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 +0100287 kubectl describe pods --all-namespaces -l app.kubernetes.io/part-of=voltha > ${dest}/voltha-pods-describe.txt
288 kubectl describe pods -n infra -l app=onos-classic > ${dest}/onos-pods-describe.txt
Hardik Windlass428f5132021-03-15 12:17:47 +0530289 helm ls --all-namespaces > ${dest}/helm-charts.txt
290 """
Joey Armstrongc63186b2023-08-30 12:39:40 -0400291 sh '''
Andrea Campanella5764e182021-03-18 14:17:59 +0100292 # copy the ONOS logs directly from the container to avoid the color codes
Andrea Campanella188e50d2022-01-14 11:30:05 +0100293 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 +0100294 '''
Joey Armstrongc63186b2023-08-30 12:39:40 -0400295 return
Hardik Windlass428f5132021-03-15 12:17:47 +0530296}
Joey Armstrongc63186b2023-08-30 12:39:40 -0400297
298// -----------------------------------------------------------------------
299// -----------------------------------------------------------------------
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530300pipeline {
Joey Armstrongc63186b2023-08-30 12:39:40 -0400301 /* no label, executor is determined by JJB */
302 agent {
303 label "${params.buildNode}"
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530304 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400305
306 options {
307 timeout(time: 220, unit: 'MINUTES')
Hardik Windlass834afbb2021-03-23 11:48:15 +0530308 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400309
310 environment {
311 PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
312 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
313 SSHPASS="karaf"
Hardik Windlass9f5bee12021-05-07 06:47:21 +0000314 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400315
316 stages {
317 stage('Download Code') {
318 steps {
319 getVolthaCode([
320 branch: "${branch}",
321 volthaSystemTestsChange: "${volthaSystemTestsChange}",
322 volthaHelmChartsChange: "${volthaHelmChartsChange}",
323 ])
324 }
325 }
326
327 // -----------------------------------------------------------------------
328 // -----------------------------------------------------------------------
329 stage('Install Tools')
330 {
331 steps
332 {
333 script
334 {
335 String iam = getIam('Install Kind')
336 println("${iam}: ENTER")
337 installKind("$branch") // needed early by stage(Cleanup)
338 println("${iam}: LEAVE")
339 } // script
340 } // steps
341 } // stage
342
343 // -----------------------------------------------------------------------
344 // -----------------------------------------------------------------------
345 stage('Cleanup') {
346 steps {
347 // remove port-forwarding
348 sh(label : 'Remove port forwarding',
349 script : """
350if [[ \$(pgrep --count 'port-forw') -gt 0 ]]; then
351 pkill --uid "\$(id -u)" --echo --full 'port-forw'
352fi
353""")
354 helmTeardown(['infra', 'voltha'])
355 }
356 }
357
358 // -----------------------------------------------------------------------
359 // -----------------------------------------------------------------------
360 stage('Create K8s Cluster') {
361 steps {
362 createKubernetesCluster([nodes: 3])
363 }
364 }
365
366 // -----------------------------------------------------------------------
367 // -----------------------------------------------------------------------
368 stage('Run Test') {
369 steps {
370 test_software_upgrade('onos-app-upgrade')
371 test_software_upgrade('voltha-component-upgrade')
372 test_software_upgrade('voltha-component-rolling-upgrade')
373 test_software_upgrade('onu-software-upgrade')
374 test_software_upgrade('onu-software-upgrade-omci-extended-msg')
375 test_software_upgrade('onu-image-dwl-simultaneously')
376 }
377 }
Hardik Windlass0f9621d2021-02-24 21:23:19 +0530378 }
Joey Armstrongc63186b2023-08-30 12:39:40 -0400379
380 // -----------------------------------------------------------------------
381 // -----------------------------------------------------------------------
382 post {
383 aborted {
384 get_pods_info("$WORKSPACE/failed")
385 }
386 failure {
387 get_pods_info("$WORKSPACE/failed")
388 }
389 always {
390 step([$class: 'RobotPublisher',
391 disableArchiveOutput: false,
392 logFileName: 'RobotLogs/*/log*.html',
393 otherFiles: '',
394 outputFileName: 'RobotLogs/*/output*.xml',
395 outputPath: '.',
396 passThreshold: 100,
397 reportFileName: 'RobotLogs/*/report*.html',
398 unstableThreshold: 0,
399 onlyCritical: true])
400 archiveArtifacts artifacts: '*.log,**/*.log,**/*.gz,*.gz,*.txt,**/*.txt'
401 } // always
402 } // post
403} // pipeline
Joey Armstrong56fdfec2024-03-01 13:43:36 -0500404
405// [EOF]