Suchitra Vemuri | c365ebe | 2018-06-01 00:04:16 -0700 | [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 | pod_config = null |
| 16 | |
| 17 | node ("${TestNodeName}") { |
| 18 | timeout (time: 240) { |
| 19 | stage ("Parse deployment configuration file") { |
| 20 | sh returnStdout: true, script: 'rm -rf ${configRepoBaseDir}' |
| 21 | sh returnStdout: true, script: 'git clone -b ${branch} ${configRepoUrl}' |
| 22 | deployment_config = readYaml file: "${configRepoBaseDir}${configRepoFile}" |
Suchitra Vemuri | c365ebe | 2018-06-01 00:04:16 -0700 | [diff] [blame] | 23 | } |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 24 | |
| 25 | stage('Export pod config') { |
| 26 | timeout(10) { |
| 27 | try { |
| 28 | sh """ |
| 29 | cd /home/cord |
| 30 | rm -rf /home/cord/helm-charts |
| 31 | git clone -b ${branch} https://gerrit.opencord.org/helm-charts |
| 32 | export KUBECONFIG=/home/cord/${deployment_config.pod_config} |
| 33 | kubectl get pods |
| 34 | """ |
| 35 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 36 | } |
Suchitra Vemuri | c365ebe | 2018-06-01 00:04:16 -0700 | [diff] [blame] | 37 | } |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 38 | stage('Clean up') { |
| 39 | timeout(10) { |
| 40 | try { |
| 41 | sh """ |
| 42 | cd /home/cord/helm-charts |
| 43 | export KUBECONFIG=/home/cord/${deployment_config.pod_config} |
| 44 | helm ls | grep onos-voltha && helm delete --purge onos-voltha |
| 45 | helm ls | grep onos-fabric && helm delete --purge onos-fabric |
| 46 | helm ls | grep voltha && helm delete --purge voltha |
| 47 | helm ls | grep rcord-lite && helm delete --purge rcord-lite |
| 48 | helm ls | grep xos-core && helm delete --purge xos-core |
Suchitra Vemuri | 9c4ffec | 2018-06-08 17:27:47 -0700 | [diff] [blame] | 49 | sleep 80 |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 50 | """ |
| 51 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 52 | } |
| 53 | } |
| 54 | stage('Install xos-core and rcord-lite') { |
| 55 | timeout(10) { |
| 56 | try { |
| 57 | sh """ |
| 58 | export KUBECONFIG=/home/cord/${deployment_config.pod_config} |
| 59 | cd /home/cord/helm-charts |
| 60 | helm dep update xos-core |
| 61 | helm install -n xos-core xos-core |
| 62 | helm dep update xos-profiles/rcord-lite |
| 63 | helm install -n rcord-lite xos-profiles/rcord-lite |
| 64 | """ |
| 65 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 66 | } |
| 67 | } |
| 68 | stage('Install voltha') { |
| 69 | timeout(10) { |
| 70 | try { |
| 71 | sh """ |
| 72 | export KUBECONFIG=/home/cord/${deployment_config.pod_config} |
| 73 | cd /home/cord/helm-charts/voltha |
| 74 | helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ |
| 75 | helm dep build |
| 76 | cd /home/cord/helm-charts |
| 77 | helm install -n voltha --set etcd-operator.customResources.createEtcdClusterCRD=false voltha |
| 78 | helm upgrade --set etcd-operator.customResources.createEtcdClusterCRD=true voltha ./voltha |
| 79 | """ |
| 80 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 81 | } |
| 82 | } |
| 83 | stage('Install ONOS-Voltha and ONOS-Fabric') { |
| 84 | timeout(10) { |
| 85 | try { |
| 86 | sh """ |
| 87 | export KUBECONFIG=/home/cord/${deployment_config.pod_config} |
| 88 | cd /home/cord/helm-charts |
| 89 | helm install -n onos-fabric -f configs/onos-fabric.yaml onos |
| 90 | helm install -n onos-voltha -f configs/onos-voltha.yaml onos |
Suchitra Vemuri | 9c4ffec | 2018-06-08 17:27:47 -0700 | [diff] [blame] | 91 | sleep 60 |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 92 | """ |
| 93 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 94 | } |
| 95 | } |
| 96 | stage('Download cord-tester repo') { |
| 97 | timeout(10) { |
| 98 | try { |
| 99 | sh """ |
| 100 | rm -rf /home/cord/cord-tester |
| 101 | cd /home/cord/ |
| 102 | git clone -b ${branch} https://gerrit.opencord.org/cord-tester |
| 103 | """ |
| 104 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 105 | } |
| 106 | } |
Suchitra Vemuri | 9c4ffec | 2018-06-08 17:27:47 -0700 | [diff] [blame] | 107 | stage('Validate Helm Chart Install') { |
| 108 | timeout(10) { |
| 109 | try { |
| 110 | sh """ |
| 111 | export KUBECONFIG=/home/cord/${deployment_config.pod_config} |
| 112 | cd /home/cord/cord-tester/src/test/robot/ |
| 113 | rm -rf Log/ || true |
| 114 | pybot -d Log -T SanityK8POD.robot || all_passed=false |
Suchitra Vemuri | 94760d1 | 2018-06-11 15:03:56 -0700 | [diff] [blame] | 115 | #if [ "\\\$all_passed" = true ]; then exit 0; else exit 1; fi |
Suchitra Vemuri | 9c4ffec | 2018-06-08 17:27:47 -0700 | [diff] [blame] | 116 | """ |
| 117 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 118 | } |
| 119 | } |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 120 | stage('Verify E2E XOS') { |
| 121 | timeout(10) { |
| 122 | try { |
| 123 | sh """ |
| 124 | export KUBECONFIG=/home/cord/${deployment_config.pod_config} |
Suchitra Vemuri | 94760d1 | 2018-06-11 15:03:56 -0700 | [diff] [blame] | 125 | chameleon=\$(kubectl get pods | grep chameleon | cut -d' ' -f1) |
| 126 | echo \$chameleon |
| 127 | kubectl delete pod \$chameleon |
| 128 | sleep 120 |
Suchitra Vemuri | 9c4ffec | 2018-06-08 17:27:47 -0700 | [diff] [blame] | 129 | kubectl get pods |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 130 | cd /home/cord/cord-tester/src/test/cord-api/Properties/ |
| 131 | sed -i \"s/^\\(SERVER_IP = \\).*/\\1\'${deployment_config.node1.ip}\'/\" RestApiProperties.py |
| 132 | sed -i \"s/^\\(SERVER_PORT = \\).*/\\1\'30006\'/\" RestApiProperties.py |
| 133 | sed -i \"s/^\\(XOS_USER = \\).*/\\1\'admin@opencord.org\'/\" RestApiProperties.py |
| 134 | sed -i \"s/^\\(XOS_PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py |
| 135 | cd /home/cord/cord-tester/src/test/cord-api/Tests |
| 136 | rm -rf Log/ || true |
| 137 | pybot -d Log -T VOLTDevice_Test.txt || all_passed=false |
| 138 | pybot -d Log -T RCORDLite_E2ETest.txt || all_passed=false |
| 139 | if [ "\\\$all_passed" = true ]; then exit 0; else exit 1; fi |
| 140 | """ |
| 141 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 142 | } |
| 143 | } |
| 144 | stage('Publish') { |
Suchitra Vemuri | c365ebe | 2018-06-01 00:04:16 -0700 | [diff] [blame] | 145 | try { |
| 146 | sh """ |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 147 | if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs; |
| 148 | mkdir RobotLogs/TestDoc || true |
Suchitra Vemuri | 9c4ffec | 2018-06-08 17:27:47 -0700 | [diff] [blame] | 149 | cp -r /home/cord/cord-tester/src/test/robot/Log/* ./RobotLogs || true |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 150 | cp -r /home/cord/cord-tester/src/test/cord-api/Tests/Log/* ./RobotLogs || true |
Suchitra Vemuri | c365ebe | 2018-06-01 00:04:16 -0700 | [diff] [blame] | 151 | """ |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 152 | step([$class: 'RobotPublisher', |
| 153 | disableArchiveOutput: false, |
| 154 | logFileName: 'RobotLogs/log*.html', |
| 155 | otherFiles: '', |
| 156 | outputFileName: 'RobotLogs/output*.xml', |
| 157 | outputPath: '.', |
| 158 | passThreshold: 100, |
| 159 | reportFileName: 'RobotLogs/report*.html', |
| 160 | unstableThreshold: 0]) |
| 161 | } catch(error) {} |
Suchitra Vemuri | c365ebe | 2018-06-01 00:04:16 -0700 | [diff] [blame] | 162 | } |
Suchitra Vemuri | 2c1896a | 2018-06-04 23:43:16 -0700 | [diff] [blame] | 163 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
Suchitra Vemuri | c365ebe | 2018-06-01 00:04:16 -0700 | [diff] [blame] | 164 | } |
Suchitra Vemuri | c365ebe | 2018-06-01 00:04:16 -0700 | [diff] [blame] | 165 | } |