blob: ba3fb072edb58ecc30877ec3d4063f372f0a7f70 [file] [log] [blame]
Luca Prete45401c82019-01-15 15:31:22 -08001// 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
15node ("${TestNodeName}") {
16 timeout (100) {
17 try {
18 stage ("Parse deployment configuration file") {
Matteo Scandolo9f8056b2019-01-17 10:33:51 -080019 sh returnStdout: true, script: "rm -rf helm-charts helm-repo-tools ${configBaseDir}"
Luca Prete45401c82019-01-15 15:31:22 -080020 sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/helm-repo-tools"
Wei-Yu Chen992665b2019-01-17 10:21:32 -080021 sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/helm-charts"
Luca Prete45401c82019-01-15 15:31:22 -080022 sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
23 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
24 }
25 stage('Clean up') {
26 timeout(10) {
27 sh returnStdout: true, script: """
28 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
29 for hchart in \$(helm list -q | grep -E -v 'docker-registry|mavenrepo|ponnet');
30 do
31 echo "Purging chart: \${hchart}"
32 helm delete --purge "\${hchart}"
33 done
34 """
35 timeout(5) {
36 waitUntil {
37 helm_deleted = sh returnStdout: true, script: """
38 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
39 helm ls -q | grep -E -v 'docker-registry|mavenrepo|ponnet' | wc -l
40 """
41 return helm_deleted.toInteger() == 0
42 }
43 }
Wei-Yu Chen9de5f162019-01-17 10:40:38 -080044 timeout(5) {
Wei-Yu Chen213821c2019-01-17 10:21:32 -080045 dir ("helm-charts") {
46 stage("Cleanup SR-IOV CNI and SR-IOV Network Device Plugin") {
47 sh returnStdout: true, script: """
48 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Wei-Yu Chenfa2aa092019-01-17 10:46:36 -080049 kubectl delete -f mcord/cni-config/05-sriov-device-plugin.yaml
50 kubectl delete -f mcord/cni-config/04-sriov-device-plugin-configmap.yaml
51 kubectl delete -f mcord/cni-config/03-network-definition.yaml
52 kubectl delete -f mcord/cni-config/02-network-crd.yaml
53 kubectl delete -f mcord/cni-config/01-cni-service-account.yaml
Wei-Yu Chen213821c2019-01-17 10:21:32 -080054 """
55 }
56 }
57 }
Luca Prete45401c82019-01-15 15:31:22 -080058 timeout(5) {
59 waitUntil {
60 kubectl_deleted = sh returnStdout: true, script: """
61 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
62 kubectl get pods --all-namespaces --no-headers | grep -E -v 'kube-system|docker-registry|mavenrepo|ponnet' | wc -l
63 """
64 return kubectl_deleted.toInteger() == 0
65 }
66 }
67 }
68 }
Luca Prete62a48c82019-01-16 10:40:01 -080069 stage('Add Helm repositories') {
Luca Prete45401c82019-01-15 15:31:22 -080070 sh returnStdout: true, script: """
71 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
72 helm repo add cord https://charts.opencord.org
Luca Prete62a48c82019-01-16 10:40:01 -080073 helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
Luca Prete45401c82019-01-15 15:31:22 -080074 helm repo update
75 """
76 timeout(1) {
77 waitUntil {
78 cord_repo_present = sh returnStdout: true, script: """
79 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
80 helm repo list | grep cord | wc -l
81 """
82 return cord_repo_present.toInteger() == 1
83 }
84 }
85 }
Wei-Yu Chen992665b2019-01-17 10:21:32 -080086 dir ("helm-charts") {
87 stage('Install SR-IOV CNI and SR-IOV Network Device Plugin') {
Luca Prete45401c82019-01-15 15:31:22 -080088 sh returnStdout: true, script: """
89 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Wei-Yu Chen992665b2019-01-17 10:21:32 -080090 kubectl apply -f mcord/cni-config/02-network-crd.yaml
91 kubectl apply -f mcord/cni-config/
Wei-Yu Chen7f8c4dd2019-01-17 15:32:03 -080092 sleep 5
Luca Prete45401c82019-01-15 15:31:22 -080093 """
94 }
95 }
Wei-Yu Chen992665b2019-01-17 10:21:32 -080096
97 stage("Install M-CORD Control Plane Services") {
98 sh returnStdout: true, script: """
99 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Wei-Yu Chen7f8c4dd2019-01-17 15:32:03 -0800100 helm install -n mcord-control-plane --namespace epc -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml cord/mcord-control-plane
Wei-Yu Chen992665b2019-01-17 10:21:32 -0800101 """
Luca Prete45401c82019-01-15 15:31:22 -0800102 }
Wei-Yu Chen992665b2019-01-17 10:21:32 -0800103
104 stage("Install M-CORD Data Plane Services") {
105 sh returnStdout: true, script: """
106 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
Wei-Yu Chen7f8c4dd2019-01-17 15:32:03 -0800107 helm install -n mcord-data-plane --namespace epc -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml cord/mcord-data-plane
Wei-Yu Chen992665b2019-01-17 10:21:32 -0800108 """
Luca Prete45401c82019-01-15 15:31:22 -0800109 }
Wei-Yu Chen992665b2019-01-17 10:21:32 -0800110
111 // stage('Install CORD Kafka') {
112 // timeout(10) {
113 // sh returnStdout: true, script: """
114 // export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
115 // helm install --version 0.8.8 --set configurationOverrides."offsets\\.topic\\.replication\\.factor"=1 --set configurationOverrides."log\\.retention\\.hours"=4 --set configurationOverrides."log\\.message\\.timestamp\\.type"="LogAppendTime" --set replicas=1 --set persistence.enabled=false --set zookeeper.replicaCount=1 --set zookeeper.persistence.enabled=false -n cord-kafka incubator/kafka
116 // """
117 // }
118 // timeout(10) {
119 // waitUntil {
120 // kafka_instances_running = sh returnStdout: true, script: """
121 // export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
122 // kubectl get pods | grep cord-kafka | grep -i running | grep 1/1 | wc -l
123 // """
124 // return kafka_instances_running.toInteger() == 2
125 // }
126 // }
127 // }
128 // stage('Install Logging Infrastructure') {
129 // timeout(10) {
130 // sh returnStdout: true, script: """
131 // export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
132 // helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml --set elasticsearch.cluster.env.MINIMUM_MASTER_NODES="1" --set elasticsearch.client.replicas=1 --set elasticsearch.master.replicas=2 --set elasticsearch.master.persistence.enabled=false --set elasticsearch.data.replicas=1 --set elasticsearch.data.persistence.enabled=false -n logging cord/logging
133 // helm-repo-tools/wait_for_pods.sh
134 // """
135 // }
136 // }
137 // stage('Install Monitoring Infrastructure') {
138 // timeout(10) {
139 // sh returnStdout: true, script: """
140 // export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
141 // helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n nem-monitoring cord/nem-monitoring
142 // helm-repo-tools/wait_for_pods.sh
143 // """
144 // }
145 // }
146 // stage('Install ONOS') {
147 // timeout(10) {
148 // sh returnStdout: true, script: """
149 // export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
150 // helm install -n onos -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml cord/onos
151 // """
152 // }
153 // timeout(10) {
154 // waitUntil {
155 // onos_completed = sh returnStdout: true, script: """
156 // export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
157 // kubectl get pods | grep -i onos | grep -i running | grep 2/2 | wc -l
158 // """
159 // return onos_completed.toInteger() == 1
160 // }
161 // }
162 // }
163 // stage('Install xos-core') {
164 // timeout(10) {
165 // sh returnStdout: true, script: """
166 // export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
167 // helm install -f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.yml -n xos-core cord/xos-core
168 // """
169 // }
170 // timeout(10) {
171 // waitUntil {
172 // xos_core_completed = sh returnStdout: true, script: """
173 // export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
174 // kubectl get pods | grep -i xos | grep -i running | grep 1/1 | wc -l
175 // """
176 // return xos_core_completed.toInteger() == 6
177 // }
178 // }
179 // }
Luca Prete45401c82019-01-15 15:31:22 -0800180
181 if ( params.configurePod ) {
182 dir ("${configBaseDir}/${configToscaDir}/att-workflow") {
183 stage('Configure R-CORD - Fabric and whitelist') {
184 timeout(1) {
185 waitUntil {
186 out_fabric = sh returnStdout: true, script: """
187 curl -s -H "xos-username:admin@opencord.org" -H "xos-password:letmein" -X POST --data-binary @${configFileName}-fabric.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l
188 """
189 return out_fabric.toInteger() == 1
190 }
191 }
192 }
193 stage('Configure R-CORD - Subscriber') {
194 timeout(1) {
195 waitUntil {
196 out_subscriber = sh returnStdout: true, script: """
197 curl -s -H 'xos-username:admin@opencord.org' -H 'xos-password:letmein' -X POST --data-binary @${configFileName}-subscriber.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l
198 """
199 return out_subscriber.toInteger() == 1
200 }
201 }
202 }
203 stage('Configure R-CORD - OLT') {
204 timeout(1) {
205 waitUntil {
206 out_olt = sh returnStdout: true, script: """
207 curl -H 'xos-username:admin@opencord.org' -H 'xos-password:letmein' -X POST --data-binary @${configFileName}-olt.yaml http://${deployment_config.nodes[0].ip}:30007/run | grep -i "created models" | wc -l
208 """
209 return out_olt.toInteger() == 1
210 }
211 }
212 }
213 }
214 }
215 currentBuild.result = 'SUCCESS'
216 } catch (err) {
217 currentBuild.result = 'FAILURE'
218 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
219 }
220 echo "RESULT: ${currentBuild.result}"
221 }
222}