Kailash | 66c389c | 2019-04-24 14:56:11 -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 | // chart-api-test-helm.groovy |
| 16 | // Checks functionality of the helm-chart, without overriding the version/tag used |
| 17 | |
Matteo Scandolo | 5c6a480 | 2019-05-14 10:44:21 -0700 | [diff] [blame] | 18 | def serviceName = "${gerritProject}" |
| 19 | |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 20 | pipeline { |
| 21 | |
| 22 | /* no label, executor is determined by JJB */ |
| 23 | agent { |
Zack Williams | b329208 | 2019-10-11 17:15:18 -0700 | [diff] [blame] | 24 | label "${params.buildNode}" |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | stages { |
| 28 | |
| 29 | stage('repo') { |
| 30 | steps { |
| 31 | checkout(changelog: false, \ |
| 32 | poll: false, |
| 33 | scm: [$class: 'RepoScm', \ |
| 34 | manifestRepositoryUrl: "${params.manifestUrl}", \ |
| 35 | manifestBranch: "${params.manifestBranch}", \ |
| 36 | currentBranch: true, \ |
| 37 | destinationDir: 'cord', \ |
| 38 | forceSync: true, |
| 39 | resetFirst: true, \ |
| 40 | quiet: true, \ |
| 41 | jobs: 4, \ |
| 42 | showAllChanges: true] \ |
| 43 | ) |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | stage('patch') { |
| 48 | steps { |
| 49 | sh ''' |
| 50 | pushd cord |
| 51 | PROJECT_PATH=\$(xmllint --xpath "string(//project[@name=\\\"${gerritProject}\\\"]/@path)" .repo/manifest.xml) |
| 52 | repo download "\$PROJECT_PATH" "${gerritChangeNumber}/${gerritPatchsetNumber}" |
| 53 | popd |
| 54 | ''' |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | stage('minikube') { |
| 59 | steps { |
| 60 | /* see https://github.com/kubernetes/minikube/#linux-continuous-integration-without-vm-support */ |
| 61 | sh ''' |
| 62 | export MINIKUBE_WANTUPDATENOTIFICATION=false |
| 63 | export MINIKUBE_WANTREPORTERRORPROMPT=false |
| 64 | export CHANGE_MINIKUBE_NONE_USER=true |
| 65 | export MINIKUBE_HOME=$HOME |
| 66 | mkdir -p $HOME/.kube || true |
| 67 | touch $HOME/.kube/config |
| 68 | export KUBECONFIG=$HOME/.kube/config |
| 69 | sudo -E /usr/bin/minikube start --vm-driver=none |
| 70 | ''' |
| 71 | script { |
| 72 | timeout(3) { |
| 73 | waitUntil { |
| 74 | sleep 5 |
| 75 | def kc_ret = sh script: "kubectl get po", returnStatus: true |
| 76 | return (kc_ret == 0); |
| 77 | } |
| 78 | } |
| 79 | } |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | stage('helm') { |
| 84 | steps { |
| 85 | sh ''' |
| 86 | helm init |
| 87 | sleep 60 |
| 88 | helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ |
Carmelo Cascone | 319b34c | 2020-01-14 16:48:07 -0800 | [diff] [blame] | 89 | helm repo add cord https://charts.opencord.org |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 90 | ''' |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | stage('Install XOS w/Service') { |
| 95 | steps { |
Kailash | 5f300b9 | 2019-05-21 14:04:19 -0700 | [diff] [blame] | 96 | script { |
| 97 | if (serviceName == "olt-service") { |
| 98 | serviceName = "volt" |
| 99 | } |
| 100 | else if (serviceName == "onos-service") { |
| 101 | serviceName = "onos" |
| 102 | } |
| 103 | else if (serviceName == "kubernetes-service") { |
| 104 | serviceName = "kubernetes" |
| 105 | } |
| 106 | } |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 107 | sh """ |
| 108 | #!/usr/bin/env bash |
| 109 | set -eu -o pipefail |
| 110 | |
| 111 | pushd cord/helm-charts |
| 112 | helm dep update xos-core |
| 113 | helm install xos-core -n xos-core |
| 114 | |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 115 | helm-repo-tools/wait_for_pods.sh |
| 116 | |
| 117 | #install service |
Kailash | 5f300b9 | 2019-05-21 14:04:19 -0700 | [diff] [blame] | 118 | helm dep update xos-services/${serviceName} |
| 119 | helm install xos-services/${serviceName} -n ${serviceName} |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 120 | popd |
| 121 | """ |
| 122 | } |
| 123 | } |
| 124 | stage('Verify') { |
| 125 | steps { |
Matteo Scandolo | 5c6a480 | 2019-05-14 10:44:21 -0700 | [diff] [blame] | 126 | echo "serviceName: ${serviceName}" |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 127 | sh """ |
| 128 | #!/usr/bin/env bash |
| 129 | set -ex -o pipefail |
| 130 | export DOCKER_TAG=\$(cat $WORKSPACE/cord/orchestration/xos/VERSION) |
| 131 | |
| 132 | #wait for xos-core and models to be loaded |
| 133 | timeout 300 bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/dynamicload/load_status | jq '.services[] | select(.name==\\"core\\").state'| grep -q present; do echo 'Waiting for Core to be loaded'; sleep 5; done" |
Matteo Scandolo | 5c6a480 | 2019-05-14 10:44:21 -0700 | [diff] [blame] | 134 | timeout 300 bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/dynamicload/load_status | jq '.services[] | select(.name==\\"${serviceName}\\").state'| grep -q present; do echo 'Waiting for Core to be loaded'; sleep 5; done" |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 135 | |
| 136 | ## get pod logs |
| 137 | for pod in \$(kubectl get pods --no-headers | awk '{print \$1}'); |
| 138 | do |
| 139 | kubectl logs \$pod> $WORKSPACE/\$pod.log; |
| 140 | done |
| 141 | """ |
| 142 | } |
| 143 | } |
Kailash | f5c3f2b | 2019-04-30 08:58:49 -0700 | [diff] [blame] | 144 | stage('Generate Model API Tests') { |
| 145 | steps { |
| 146 | sh """ |
| 147 | CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}') |
| 148 | cd $WORKSPACE/cord/test/cord-tester |
Kailash | f5c3f2b | 2019-04-30 08:58:49 -0700 | [diff] [blame] | 149 | docker cp $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/targets/xosserviceupgradetest.xtarget \$CORE_CONTAINER:/opt/xos/lib/xos-genx/xosgenx/targets/xosserviceupgradetest.xtarget |
| 150 | docker cp $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/targets/xosstaticlibrary.xtarget \$CORE_CONTAINER:/opt/xos/lib/xos-genx/xosgenx/targets/xosstaticlibrary.xtarget |
| 151 | |
| 152 | export testname=_service_api.robot |
| 153 | export library=_library.robot |
| 154 | |
| 155 | SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}') |
| 156 | echo \$SERVICES |
| 157 | |
| 158 | for i in \$SERVICES; do bash -c "docker exec -i \$CORE_CONTAINER /bin/bash -c 'xosgenx --target /opt/xos/lib/xos-genx/xosgenx/targets/./xosserviceupgradetest.xtarget /opt/xos/dynamic_services/\$i/\$i.xproto /opt/xos/core/models/core.xproto'" > $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/\$i\$testname; done |
| 159 | |
| 160 | for i in \$SERVICES; do bash -c "docker exec -i \$CORE_CONTAINER /bin/bash -c 'xosgenx --target /opt/xos/lib/xos-genx/xosgenx/targets/./xosstaticlibrary.xtarget /opt/xos/dynamic_services/\$i/\$i.xproto /opt/xos/core/models/core.xproto'" > $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/\$i\$library; done |
| 161 | ls -al $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/ |
| 162 | """ |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | stage('Test Pre-Upgrade') { |
| 167 | steps { |
| 168 | sh """ |
| 169 | pushd cord/test/cord-tester/src/test/cord-api/Tests |
| 170 | |
| 171 | CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}') |
| 172 | CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}') |
| 173 | XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172) |
| 174 | |
| 175 | cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Properties/ |
| 176 | sed -i \"s/^\\(SERVER_IP = \\).*/\\1\'\$XOS_CHAMELEON\'/\" RestApiProperties.py |
| 177 | sed -i \"s/^\\(SERVER_PORT = \\).*/\\1\'9101\'/\" RestApiProperties.py |
| 178 | sed -i \"s/^\\(XOS_USER = \\).*/\\1\'admin@opencord.org\'/\" RestApiProperties.py |
| 179 | sed -i \"s/^\\(XOS_PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py |
| 180 | sed -i \"s/^\\(PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py |
| 181 | |
| 182 | export testname=_service_api.robot |
| 183 | export library=_library.robot |
| 184 | SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}') |
| 185 | echo \$SERVICES |
| 186 | |
| 187 | cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests |
Matteo Scandolo | 5c6a480 | 2019-05-14 10:44:21 -0700 | [diff] [blame] | 188 | for i in \$SERVICES; do bash -c "robot -v SETUP_FLAG:Setup -i create -d Log -T -v TESTLIBRARY:${serviceName}_library.robot \$i\$testname"; sleep 2; done || true |
Kailash | f5c3f2b | 2019-04-30 08:58:49 -0700 | [diff] [blame] | 189 | |
| 190 | popd |
| 191 | """ |
| 192 | } |
| 193 | } |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 194 | |
| 195 | stage('Build/Install New Service') { |
| 196 | steps { |
| 197 | sh """ |
| 198 | #!/usr/bin/env bash |
| 199 | set -eu -o pipefail |
| 200 | pushd $WORKSPACE/cord/orchestration/xos-services/${gerritProject} |
| 201 | export DOCKER_TAG=\$(cat VERSION)-test |
| 202 | export DOCKER_REPOSITORY=xosproject/ |
| 203 | export DOCKER_BUILD_ARGS=--no-cache |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 204 | echo "\$(cat VERSION)-test" > VERSION |
| 205 | make docker-build |
| 206 | |
| 207 | #install newservice |
| 208 | cd $WORKSPACE/cord/helm-charts |
| 209 | helm upgrade --set image.tag=\$DOCKER_TAG \ |
| 210 | --set image.pullPolicy=Never \ |
Kailash | 5f300b9 | 2019-05-21 14:04:19 -0700 | [diff] [blame] | 211 | --recreate-pods ${serviceName} xos-services/${serviceName} |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 212 | popd |
| 213 | """ |
| 214 | } |
| 215 | } |
Kailash | 44fd62c | 2019-04-30 10:26:31 -0700 | [diff] [blame] | 216 | |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 217 | stage('Verify Service Upgrade') { |
| 218 | steps { |
| 219 | sh """ |
| 220 | #!/usr/bin/env bash |
| 221 | set -ex -o pipefail |
| 222 | DOCKER_TAG=\$(cat $WORKSPACE/cord/orchestration/xos-services/${gerritProject}/VERSION) |
| 223 | |
| 224 | #wait for xos-core and models to be loaded |
| 225 | timeout 300 bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/dynamicload/load_status | jq '.services[] | select(.name==\\"core\\").state'| grep -q present; do echo 'Waiting for Core to be loaded'; sleep 5; done" |
Matteo Scandolo | 5c6a480 | 2019-05-14 10:44:21 -0700 | [diff] [blame] | 226 | timeout 300 bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/dynamicload/load_status | jq '.services[] | select(.name==\\"${serviceName}\\").state'| grep -q present; do echo 'Waiting for New Service to be loaded'; sleep 5; done" |
| 227 | timeout 300 bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/dynamicload/load_status | jq '.services[] | select(.name==\\"${serviceName}\\").version'| grep -q \$DOCKER_TAG; do echo 'Waiting for New Service Version Check'; sleep 5; done" |
Kailash | 4590ca1 | 2019-04-30 14:49:22 -0700 | [diff] [blame] | 228 | sleep 120 |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 229 | """ |
| 230 | } |
| 231 | } |
Kailash | 44fd62c | 2019-04-30 10:26:31 -0700 | [diff] [blame] | 232 | |
Kailash | f5c3f2b | 2019-04-30 08:58:49 -0700 | [diff] [blame] | 233 | stage('Test Post-Upgrade') { |
| 234 | steps { |
| 235 | sh """ |
| 236 | CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}') |
| 237 | |
| 238 | export testname=_service_api.robot |
| 239 | export library=_library.robot |
| 240 | SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}') |
| 241 | echo \$SERVICES |
| 242 | cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests |
Matteo Scandolo | 5c6a480 | 2019-05-14 10:44:21 -0700 | [diff] [blame] | 243 | for i in \$SERVICES; do bash -c "robot -v SETUP_FLAG:Setup -i get -d Log -T -v TESTLIBRARY:${serviceName}_library.robot \$i\$testname"; sleep 2; done || true |
Kailash | 44fd62c | 2019-04-30 10:26:31 -0700 | [diff] [blame] | 244 | |
| 245 | ## get pod logs |
| 246 | for pod in \$(kubectl get pods --no-headers | awk '{print \$1}'); |
| 247 | do |
| 248 | kubectl logs \$pod> $WORKSPACE/\$pod.log; |
| 249 | done || true |
| 250 | """ |
| 251 | } |
| 252 | } |
| 253 | |
Andy Bavier | e053ad3 | 2019-05-09 13:58:34 -0700 | [diff] [blame] | 254 | /* Disable the downgrade step because the core doesn't support reverse migrations |
Kailash | 44fd62c | 2019-04-30 10:26:31 -0700 | [diff] [blame] | 255 | stage('Downgrade Service') { |
| 256 | steps { |
| 257 | sh """ |
| 258 | #!/usr/bin/env bash |
| 259 | set -eu -o pipefail |
| 260 | |
| 261 | pushd cord/helm-charts |
| 262 | #delete service |
| 263 | helm delete --purge ${gerritProject} |
| 264 | |
| 265 | #re-install service with previous version |
| 266 | helm dep update xos-services/${gerritProject} |
| 267 | helm install xos-services/${gerritProject} -n ${gerritProject} |
| 268 | |
| 269 | #wait for xos-core and models to be loaded |
| 270 | timeout 300 bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/dynamicload/load_status | jq '.services[] | select(.name==\\"core\\").state'| grep -q present; do echo 'Waiting for Core to be loaded'; sleep 5; done" |
| 271 | timeout 300 bash -c "until http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/dynamicload/load_status | jq '.services[] | select(.name==\\"${gerritProject}\\").state'| grep -q present; do echo 'Waiting for Service to be loaded'; sleep 5; done" |
Kailash | 4590ca1 | 2019-04-30 14:49:22 -0700 | [diff] [blame] | 272 | sleep 120 |
Kailash | 44fd62c | 2019-04-30 10:26:31 -0700 | [diff] [blame] | 273 | cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests |
| 274 | |
| 275 | CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}') |
| 276 | |
| 277 | export testname=_service_api.robot |
| 278 | export library=_library.robot |
| 279 | SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}') |
| 280 | echo \$SERVICES |
| 281 | for i in \$SERVICES; do bash -c "robot -v SETUP_FLAG:Setup -i get -d Log -T -v TESTLIBRARY:${gerritProject}_library.robot \$i\$testname"; sleep 2; done || true |
| 282 | |
| 283 | ## get pod logs |
| 284 | for pod in \$(kubectl get pods --no-headers | awk '{print \$1}'); |
| 285 | do |
| 286 | kubectl logs \$pod> $WORKSPACE/\$pod.log; |
| 287 | done || true |
| 288 | |
| 289 | popd |
Kailash | f5c3f2b | 2019-04-30 08:58:49 -0700 | [diff] [blame] | 290 | """ |
| 291 | } |
| 292 | } |
Andy Bavier | e053ad3 | 2019-05-09 13:58:34 -0700 | [diff] [blame] | 293 | */ |
Kailash | f5c3f2b | 2019-04-30 08:58:49 -0700 | [diff] [blame] | 294 | |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 295 | } |
Kailash | 44fd62c | 2019-04-30 10:26:31 -0700 | [diff] [blame] | 296 | |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 297 | post { |
| 298 | always { |
| 299 | sh """ |
Kailash | f5c3f2b | 2019-04-30 08:58:49 -0700 | [diff] [blame] | 300 | # copy robot logs |
| 301 | if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs |
| 302 | cp -r $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/Log/*ml ./RobotLogs |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 303 | kubectl get pods --all-namespaces |
| 304 | kubectl describe pods |
| 305 | http -a admin@opencord.org:letmein GET http://127.0.0.1:30001/xosapi/v1/dynamicload/load_status |
| 306 | echo "# removing helm deployments" |
| 307 | kubectl get pods |
| 308 | helm list |
| 309 | |
| 310 | for hchart in \$(helm list -q); |
| 311 | do |
| 312 | echo "## Purging chart: \${hchart} ##" |
| 313 | helm delete --purge "\${hchart}" |
| 314 | done |
| 315 | |
| 316 | sudo minikube delete |
| 317 | """ |
Kailash | f5c3f2b | 2019-04-30 08:58:49 -0700 | [diff] [blame] | 318 | step([$class: 'RobotPublisher', |
| 319 | disableArchiveOutput: false, |
| 320 | logFileName: 'RobotLogs/log*.html', |
| 321 | otherFiles: '', |
| 322 | outputFileName: 'RobotLogs/output*.xml', |
| 323 | outputPath: '.', |
| 324 | passThreshold: 100, |
| 325 | reportFileName: 'RobotLogs/report*.html', |
| 326 | unstableThreshold: 0]); |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 327 | archiveArtifacts artifacts: '*.log' |
| 328 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "kailash@opennetworking.org, scottb@opennetworking.org", sendToIndividuals: false]) |
Kailash | 66c389c | 2019-04-24 14:56:11 -0700 | [diff] [blame] | 329 | } |
| 330 | } |
| 331 | } |