blob: 077608fc93d83e9f601f25c36527e29c0d1e0fe1 [file] [log] [blame]
Joey Armstrong518f3572024-02-11 07:56:25 -05001// Copyright 2017-2024 Open Networking Foundation (ONF) and the ONF Contributors
Kailash Khalasic00ac4d2018-08-20 09:21:48 -07002//
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 {
Zack Williamsb3292082019-10-11 17:15:18 -070022 label "${params.buildNode}"
Kailash Khalasic00ac4d2018-08-20 09:21:48 -070023 }
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
Luca Prete2ae90132018-12-13 17:14:01 -080090 helm-repo-tools/wait_for_pods.sh
Zack Williamsa26fc9d2018-09-18 16:49:01 -070091
Kailash Khalasic00ac4d2018-08-20 09:21:48 -070092 helm dep up xos-core
Kailashc3042c52019-09-13 10:15:08 -070093
94 if [[ ${gerritProject} == "xos"]]; then
95 helm install --set images.xos_core.tag=master xos-core -n xos-core;
96 else
97 helm install xos-core -n xos-core;
98 fi
Kailash Khalasic00ac4d2018-08-20 09:21:48 -070099
Kailashf05f3a12018-12-17 09:06:28 -0800100 helm dep update xos-profiles/seba-services
Kailashbe13fe72019-02-04 10:50:48 -0800101 helm install xos-profiles/seba-services
Kailashf05f3a12018-12-17 09:06:28 -0800102 JOBS_TIMEOUT=900 ./helm-repo-tools/wait_for_jobs.sh
Kailashf05f3a12018-12-17 09:06:28 -0800103
Kailashb06829d2019-05-02 14:44:57 -0700104 sleep 60
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700105 echo "# Checking helm deployments"
106 kubectl get pods
107 helm list
108
109 for hchart in \$(helm list -q);
110 do
111 echo "## 'helm status' for chart: \${hchart} ##"
112 helm status "\${hchart}"
113 done
Kailashbe13fe72019-02-04 10:50:48 -0800114 popd
115
116 """
117 }
118 }
Kailash2caf2b02019-05-01 14:50:47 -0700119
120 stage('install profile') {
121 when { expression { return params.InstallService } }
122 steps {
123 sh """
124 #!/usr/bin/env bash
125 set -eu -o pipefail
126
127 pushd cord/helm-charts
128
129 helm dep update ${params.helmChart}
130 helm install --set image.tag=master ${params.helmChart} --set att-workflow-driver.kafkaService=cord-kafka -n ${params.service}
131
132 helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
133
134 # wait for services to load
135 JOBS_TIMEOUT=900 ./helm-repo-tools/wait_for_jobs.sh
Kailashb06829d2019-05-02 14:44:57 -0700136 sleep 120
Kailash2caf2b02019-05-01 14:50:47 -0700137 echo "# Checking helm deployments"
138 kubectl get pods
139 helm list
140
141 for hchart in \$(helm list -q);
142 do
143 echo "## 'helm status' for chart: \${hchart} ##"
144 helm status "\${hchart}"
145 done
146 popd
147
148 """
149 }
150 }
151
Kailash866e14f2019-02-22 10:43:23 -0800152 stage('test') {
Kailashbe13fe72019-02-04 10:50:48 -0800153 steps {
154 sh """
155 #!/usr/bin/env bash
156 set -eu -o pipefail
Kailashf73ff1c2019-03-06 14:00:51 -0800157 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 -0800158 pushd cord/test/cord-tester/src/test/cord-api/
159 source setup_venv.sh
Kailashc47d9c52019-03-05 13:10:47 -0800160 cd Tests/${params.TestDir}
Kailash866e14f2019-02-22 10:43:23 -0800161 ${params.TestCommand} || true
Kailashbe13fe72019-02-04 10:50:48 -0800162 popd
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700163 """
164 }
165 }
166 }
Kailash2caf2b02019-05-01 14:50:47 -0700167
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700168 post {
169 always {
Kailashf73ff1c2019-03-06 14:00:51 -0800170 sh """
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700171 kubectl get pods --all-namespaces
172
Kailash2caf2b02019-05-01 14:50:47 -0700173 ## get pod logs
174 for pod in \$(kubectl get pods --no-headers | awk '{print \$1}');
175 do
176 kubectl logs \$pod> $WORKSPACE/\$pod.log;
177 done || true
178
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700179 # copy robot logs
180 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
Kailashc47d9c52019-03-05 13:10:47 -0800181 cp -r $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/${params.TestDir}/Log/*ml ./RobotLogs
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700182 echo "# removing helm deployments"
183 kubectl get pods
184 helm list
185
186 for hchart in \$(helm list -q);
187 do
188 echo "## Purging chart: \${hchart} ##"
189 helm delete --purge "\${hchart}"
190 done
191
192 sudo minikube delete
Kailashf73ff1c2019-03-06 14:00:51 -0800193 """
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700194 step([$class: 'RobotPublisher',
195 disableArchiveOutput: false,
196 logFileName: 'RobotLogs/log*.html',
197 otherFiles: '',
198 outputFileName: 'RobotLogs/output*.xml',
199 outputPath: '.',
200 passThreshold: 100,
201 reportFileName: 'RobotLogs/report*.html',
202 unstableThreshold: 0]);
Kailash2caf2b02019-05-01 14:50:47 -0700203 archiveArtifacts artifacts: '*.log'
Kailash Khalasic00ac4d2018-08-20 09:21:48 -0700204
205 }
206 }
207}