yardstick: remove fetch_os_creds builder
[releng.git] / jjb / yardstick / yardstick-ci-jobs.yml
1 ###################################
2 # job configuration for functest
3 ###################################
4 - project:
5     name: yardstick
6
7     project: '{name}'
8
9 #--------------------------------
10 # BRANCH ANCHORS
11 #--------------------------------
12     master: &master
13         stream: master
14         branch: '{stream}'
15         gs-pathname: ''
16     brahmaputra: &brahmaputra
17         stream: brahmaputra
18         branch: 'stable/{stream}'
19         gs-pathname: '{stream}'
20 #--------------------------------
21 # POD, INSTALLER, AND BRANCH MAPPING
22 #--------------------------------
23 #        brahmaputra
24 #--------------------------------
25     pod:
26         - opnfv-jump-1:
27             installer: apex
28             <<: *brahmaputra
29         - opnfv-jump-2:
30             installer: fuel
31             <<: *brahmaputra
32         - intel-pod5:
33             installer: joid
34             <<: *brahmaputra
35         - huawei-us-deploy-bare-1:
36             installer: compass
37             <<: *brahmaputra
38 #--------------------------------
39 #        master
40 #--------------------------------
41         - ericsson-pod1:
42             installer: fuel
43             <<: *master
44         - ericsson-pod2:
45             installer: fuel
46             <<: *master
47         - intel-pod6:
48             installer: joid
49             <<: *master
50         - intel-pod8:
51             installer: compass
52             <<: *master
53         - zte-build-1:
54             installer: fuel
55             <<: *master
56         - orange-pod2:
57             installer: joid
58             <<: *master
59         - opnfv-jump-1:
60             installer: apex
61             <<: *master
62 #--------------------------------
63     loop:
64         - daily
65
66     jobs:
67         - 'yardstick-{installer}-{pod}-{loop}-{stream}'
68
69 ################################
70 # job templates
71 ################################
72 - job-template:
73     name: 'yardstick-{installer}-{pod}-{loop}-{stream}'
74
75     disabled: false
76
77     wrappers:
78         - build-name:
79             name: '$BUILD_NUMBER - Scenario: $DEPLOY_SCENARIO'
80
81     parameters:
82         - project-parameter:
83             project: '{project}'
84         - '{pod}-defaults'
85         - '{installer}-defaults'
86         - 'yardstick-params-{pod}'
87         - string:
88             name: YARDSTICK_SUITE_NAME
89             default: opnfv_${{NODE_NAME}}_{loop}.yaml
90             description: 'Path to test suite'
91         - string:
92             name: CI_DEBUG
93             default: 'false'
94             description: "Show debut output information"
95
96     scm:
97         - git-scm:
98             credentials-id: '{ssh-credentials}'
99             refspec: ''
100             branch: '{branch}'
101
102     builders:
103         - 'yardstick-cleanup'
104         #- 'yardstick-fetch-os-creds'
105         - 'yardstick-daily'
106
107     publishers:
108         - email:
109             recipients: ana.cunha@ericsson.com jorgen.w.karlsson@ericsson.com
110
111 ########################
112 # builder macros
113 ########################
114 - builder:
115     name: yardstick-daily
116     builders:
117         - shell: |
118             #!/bin/bash
119             set -e
120             [[ $CI_DEBUG == true ]] && redirect="/dev/stdout" || redirect="/dev/null"
121
122             # labconfig is used only for joid
123             labconfig=""
124             sshkey=""
125             if [[ ${INSTALLER_TYPE} == 'apex' ]]; then
126                 instack_mac=$(sudo virsh domiflist instack | grep default | \
127                               grep -Eo "[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+:[0-9a-f]+")
128                 INSTALLER_IP=$(/usr/sbin/arp -e | grep ${instack_mac} | awk {'print $1'})
129                 sshkey="-v /root/.ssh/id_rsa:/root/.ssh/id_rsa"
130                 sudo iptables -D FORWARD -o virbr0 -j REJECT --reject-with icmp-port-unreachable
131                 sudo iptables -D FORWARD -i virbr0 -j REJECT --reject-with icmp-port-unreachable
132             elif [[ ${INSTALLER_TYPE} == 'joid' ]]; then
133                 # If production lab then creds may be retrieved dynamically
134                 # creds are on the jumphost, always in the same folder
135                 labconfig="-v $LAB_CONFIG/admin-openrc:/home/opnfv/openrc"
136                 # If dev lab, credentials may not be the default ones, just provide a path to put them into docker
137                 # replace the default one by the customized one provided by jenkins config
138             fi
139
140             opts="--privileged=true --rm"
141             envs="-e INSTALLER_TYPE=${INSTALLER_TYPE} -e INSTALLER_IP=${INSTALLER_IP} -e NODE_NAME=${NODE_NAME} -e EXTERNAL_NETWORK=${EXTERNAL_NETWORK} -e YARDSTICK_BRANCH=${GIT_BRANCH##origin/}"
142
143             # Pull the latest image
144             docker pull opnfv/yardstick >$redirect
145
146             # Run docker
147             cmd="sudo docker run ${opts} ${envs} ${labconfig} ${sshkey} opnfv/yardstick run_tests.sh ${YARDSTICK_DB_BACKEND} ${YARDSTICK_SUITE_NAME}"
148             echo "Yardstick: Running docker cmd: ${cmd}"
149             ${cmd}
150
151             echo "Yardstick: done!"
152
153 - builder:
154     name: yardstick-fetch-os-creds
155     builders:
156         - shell:
157             !include-raw: ../../utils/fetch_os_creds.sh
158
159 - builder:
160     name: yardstick-cleanup
161     builders:
162         - shell: |
163             #!/bin/bash
164             [[ $CI_DEBUG == true ]] && redirect="/dev/stdout" || redirect="/dev/null"
165
166             echo "Cleaning up docker containers/images..."
167             # Remove previous running containers if exist
168             if [[ ! -z $(docker ps -a | grep opnfv/yardstick) ]]; then
169                 echo "Removing existing opnfv/yardstick containers..."
170                 docker ps -a | grep opnfv/yardstick | awk '{print $1}' | xargs docker rm -f >$redirect
171
172             fi
173
174             # Remove existing images if exist
175             if [[ ! -z $(docker images | grep opnfv/yardstick) ]]; then
176                 echo "Docker images to remove:"
177                 docker images | head -1 && docker images | grep opnfv/yardstick
178                 image_tags=($(docker images | grep opnfv/yardstick | awk '{print $2}'))
179                 for tag in "${image_tags[@]}"; do
180                     echo "Removing docker image opnfv/yardstick:$tag..."
181                     docker rmi opnfv/yardstick:$tag >$redirect
182
183                 done
184             fi
185 ########################
186 # parameter macros
187 ########################
188 - parameter:
189     name: 'yardstick-params-intel-pod5'
190     parameters:
191         - string:
192             name: YARDSTICK_DB_BACKEND
193             default: ''
194             description: 'Arguments to use in order to choose the backend DB'
195
196 - parameter:
197     name: 'yardstick-params-intel-pod6'
198     parameters:
199         - string:
200             name: YARDSTICK_DB_BACKEND
201             default: ''
202             description: 'Arguments to use in order to choose the backend DB'
203
204 - parameter:
205     name: 'yardstick-params-intel-pod8'
206     parameters:
207         - string:
208             name: YARDSTICK_DB_BACKEND
209             default: ''
210             description: 'Arguments to use in order to choose the backend DB'
211
212 - parameter:
213     name: 'yardstick-params-ericsson-pod1'
214     parameters:
215         - string:
216             name: YARDSTICK_DB_BACKEND
217             default: '-i 10.118.36.90:8086'
218             description: 'Arguments to use in order to choose the backend DB'
219
220 - parameter:
221     name: 'yardstick-params-ericsson-pod2'
222     parameters:
223         - string:
224             name: YARDSTICK_DB_BACKEND
225             default: '-i 10.118.36.90:8086'
226             description: 'Arguments to use in order to choose the backend DB'
227 - parameter:
228     name: 'yardstick-params-opnfv-jump-1'
229     parameters:
230         - string:
231             name: YARDSTICK_DB_BACKEND
232             default: '-r 213.77.62.197/results'
233             description: 'Arguments to use in order to choose the backend DB'
234 - parameter:
235     name: 'yardstick-params-opnfv-jump-2'
236     parameters:
237         - string:
238             name: YARDSTICK_DB_BACKEND
239             default: '-r 213.77.62.197/results'
240             description: 'Arguments to use in order to choose the backend DB'
241
242 - parameter:
243     name: 'yardstick-params-huawei-us-deploy-bare-1'
244     parameters:
245         - string:
246             name: YARDSTICK_DB_BACKEND
247             default: ''
248             description: 'Arguments to use in order to choose the backend DB'
249
250 - parameter:
251     name: 'yardstick-params-zte-build-1'
252     parameters:
253         - string:
254             name: YARDSTICK_DB_BACKEND
255             default: ''
256             description: 'Arguments to use in order to choose the backend DB'
257
258 - parameter:
259     name: 'yardstick-params-orange-pod2'
260     parameters:
261         - string:
262             name: YARDSTICK_DB_BACKEND
263             default: ''
264             description: 'Arguments to use in order to choose the backend DB'