blob: 6b956f6cb5f5fd81e8651253741e74c964ed0a56 [file] [log] [blame]
Kailash Khalasic00ac4d2018-08-20 09:21:48 -07001// 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
18pipeline {
19
20 /* no label, executor is determined by JJB */
21 agent {
22 label "${params.executorNode}"
23 }
24
25 stages {
26
27 stage('repo') {
28 steps {
29 checkout(changelog: false, \
30 poll: false,
31 scm: [$class: 'RepoScm', \
32 manifestRepositoryUrl: "${params.manifestUrl}", \
Kailash Khalasif55eba82018-08-21 13:02:38 -070033 manifestBranch: "${params.manifestBranch}", \
Kailash Khalasic00ac4d2018-08-20 09:21:48 -070034 currentBranch: true, \
35 destinationDir: 'cord', \
36 forceSync: true,
37 resetFirst: true, \
38 quiet: true, \
39 jobs: 4, \
40 showAllChanges: true] \
41 )
42 }
43 }
44
45 stage('minikube') {
46 steps {
47 /* see https://github.com/kubernetes/minikube/#linux-continuous-integration-without-vm-support */
48 sh '''
49 export MINIKUBE_WANTUPDATENOTIFICATION=false
50 export MINIKUBE_WANTREPORTERRORPROMPT=false
51 export CHANGE_MINIKUBE_NONE_USER=true
52 export MINIKUBE_HOME=$HOME
53 mkdir -p $HOME/.kube || true
54 touch $HOME/.kube/config
55 export KUBECONFIG=$HOME/.kube/config
56 sudo -E /usr/bin/minikube start --vm-driver=none
57 '''
58 script {
59 timeout(3) {
60 waitUntil {
61 sleep 5
62 def kc_ret = sh script: "kubectl get po", returnStatus: true
63 return (kc_ret == 0);
64 }
65 }
66 }
67 }
68 }
69
70 stage('helm') {
71 steps {
72 sh '''
73 helm init
74 sleep 60
75 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
76 '''
77 }
78 }
79
Kailash2caf2b02019-05-01 14:50:47 -070080 stage('install xos') {
Kailash Khalasic00ac4d2018-08-20 09:21:48 -070081 steps {
82 sh """
83 #!/usr/bin/env bash
84 set -eu -o pipefail
85
Kailash Khalasic00ac4d2018-08-20 09:21:48 -070086 pushd cord/helm-charts
87
Zack Williamsa26fc9d2018-09-18 16:49:01 -070088 helm install -f examples/kafka-single.yaml --version 0.8.8 -n cord-kafka incubator/kafka
Luca Prete2ae90132018-12-13 17:14:01 -080089
90 git clone https://gerrit.opencord.org/helm-repo-tools
91 helm-repo-tools/wait_for_pods.sh
Zack Williamsa26fc9d2018-09-18 16:49:01 -070092
Kailash Khalasic00ac4d2018-08-20 09:21:48 -070093 helm dep up xos-core
Kailashb06829d2019-05-02 14:44:57 -070094 helm install --set images.xos_core.tag=master xos-core -n xos-core
Kailash Khalasic00ac4d2018-08-20 09:21:48 -070095
Kailashf05f3a12018-12-17 09:06:28 -080096 helm dep update xos-profiles/seba-services
Kailashbe13fe72019-02-04 10:50:48 -080097 helm install xos-profiles/seba-services
Kailashf05f3a12018-12-17 09:06:28 -080098 JOBS_TIMEOUT=900 ./helm-repo-tools/wait_for_jobs.sh
Kailashf05f3a12018-12-17 09:06:28 -080099
Kailashb06829d2019-05-02 14:44:57 -0700100 sleep 60
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700101 echo "# Checking helm deployments"
102 kubectl get pods
103 helm list
104
105 for hchart in \$(helm list -q);
106 do
107 echo "## 'helm status' for chart: \${hchart} ##"
108 helm status "\${hchart}"
109 done
Kailashbe13fe72019-02-04 10:50:48 -0800110 popd
111
112 """
113 }
114 }
Kailash2caf2b02019-05-01 14:50:47 -0700115
116 stage('install profile') {
117 when { expression { return params.InstallService } }
118 steps {
119 sh """
120 #!/usr/bin/env bash
121 set -eu -o pipefail
122
123 pushd cord/helm-charts
124
125 helm dep update ${params.helmChart}
126 helm install --set image.tag=master ${params.helmChart} --set att-workflow-driver.kafkaService=cord-kafka -n ${params.service}
127
128 helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
129
130 # wait for services to load
131 JOBS_TIMEOUT=900 ./helm-repo-tools/wait_for_jobs.sh
Kailashb06829d2019-05-02 14:44:57 -0700132 sleep 120
Kailash2caf2b02019-05-01 14:50:47 -0700133 echo "# Checking helm deployments"
134 kubectl get pods
135 helm list
136
137 for hchart in \$(helm list -q);
138 do
139 echo "## 'helm status' for chart: \${hchart} ##"
140 helm status "\${hchart}"
141 done
142 popd
143
144 """
145 }
146 }
147
Kailash866e14f2019-02-22 10:43:23 -0800148 stage('test') {
Kailashbe13fe72019-02-04 10:50:48 -0800149 steps {
150 sh """
151 #!/usr/bin/env bash
152 set -eu -o pipefail
Kailashf73ff1c2019-03-06 14:00:51 -0800153 export CORD_KAFKA_IP=\$(kubectl exec cord-kafka-0 -- ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172)
Kailashbe13fe72019-02-04 10:50:48 -0800154 pushd cord/test/cord-tester/src/test/cord-api/
155 source setup_venv.sh
Kailashc47d9c52019-03-05 13:10:47 -0800156 cd Tests/${params.TestDir}
Kailash866e14f2019-02-22 10:43:23 -0800157 ${params.TestCommand} || true
Kailashbe13fe72019-02-04 10:50:48 -0800158 popd
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700159 """
160 }
161 }
162 }
Kailash2caf2b02019-05-01 14:50:47 -0700163
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700164 post {
165 always {
Kailashf73ff1c2019-03-06 14:00:51 -0800166 sh """
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700167 kubectl get pods --all-namespaces
168
Kailash2caf2b02019-05-01 14:50:47 -0700169 ## get pod logs
170 for pod in \$(kubectl get pods --no-headers | awk '{print \$1}');
171 do
172 kubectl logs \$pod> $WORKSPACE/\$pod.log;
173 done || true
174
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700175 # copy robot logs
176 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
Kailashc47d9c52019-03-05 13:10:47 -0800177 cp -r $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/${params.TestDir}/Log/*ml ./RobotLogs
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700178 echo "# removing helm deployments"
179 kubectl get pods
180 helm list
181
182 for hchart in \$(helm list -q);
183 do
184 echo "## Purging chart: \${hchart} ##"
185 helm delete --purge "\${hchart}"
186 done
187
188 sudo minikube delete
Kailashf73ff1c2019-03-06 14:00:51 -0800189 """
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700190 step([$class: 'RobotPublisher',
191 disableArchiveOutput: false,
192 logFileName: 'RobotLogs/log*.html',
193 otherFiles: '',
194 outputFileName: 'RobotLogs/output*.xml',
195 outputPath: '.',
196 passThreshold: 100,
197 reportFileName: 'RobotLogs/report*.html',
198 unstableThreshold: 0]);
Kailash2caf2b02019-05-01 14:50:47 -0700199 archiveArtifacts artifacts: '*.log'
200 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${params.notificationEmail}", sendToIndividuals: false])
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700201
202 }
203 }
204}