blob: 5a74feaf042526b1f1a158f37432cc2c2a42059d [file] [log] [blame]
Dennis Dmitriev4c383472019-04-12 13:58:06 +03001/**
2 *
3 * Create fuel-devops environment, generate a model for it
4 * and bootstrap a salt cluster on the environment nodes
5 *
6 * Expected parameters:
7
8 * PARENT_NODE_NAME Name of the jenkins slave to create the environment
9 * PARENT_WORKSPACE Path to the workspace of the parent job to use tcp-qa repo
10 * LAB_CONFIG_NAME Name of the tcp-qa deployment template
11 * ENV_NAME Fuel-devops environment name
12 * MCP_VERSION MCP version, like 2018.4 or proposed
13 * MCP_IMAGE_PATH1604 Local path to the image http://ci.mcp.mirantis.net:8085/images/ubuntu-16-04-x64-mcpproposed.qcow2
14 * IMAGE_PATH_CFG01_DAY01 Local path to the image http://ci.mcp.mirantis.net:8085/images/cfg01-day01-proposed.qcow2
15 * CFG01_CONFIG_IMAGE_NAME Name for the creating config drive image, like cfg01.${LAB_CONFIG_NAME}-config-drive.iso
Hanna Arhipova5173aad2019-11-11 12:42:31 +020016 * TCP_QA_REFS Reference to the tcp-qa change on Gerrit, like refs/changes/46/418546/41
Dennis Dmitriev4c383472019-04-12 13:58:06 +030017 * PIPELINE_LIBRARY_REF Reference to the pipeline-library change
18 * MK_PIPELINES_REF Reference to the mk-pipelines change
19 * COOKIECUTTER_TEMPLATE_COMMIT Commit/tag/branch for cookiecutter-templates repository. If empty, then takes ${MCP_VERSION} value
20 * SALT_MODELS_SYSTEM_COMMIT Commit/tag/branch for reclass-system repository. If empty, then takes ${MCP_VERSION} value
21 * SHUTDOWN_ENV_ON_TEARDOWN optional, shutdown fuel-devops environment at the end of the job
22 * MCP_SALT_REPO_URL Base URL for MCP repositories required to bootstrap cfg01 node. Leave blank to use default
23 * (http://mirror.mirantis.com/ from mcp-common-scripts)
24 * MCP_SALT_REPO_KEY URL of the key file. Leave blank to use default
25 * (${MCP_SALT_REPO_URL}/${MCP_VERSION}/salt-formulas/xenial/archive-salt-formulas.key from mcp-common-scripts)
26 * OS_AUTH_URL OpenStack keystone catalog URL
27 * OS_PROJECT_NAME OpenStack project (tenant) name
28 * OS_USER_DOMAIN_NAME OpenStack user domain name
29 * OS_CREDENTIALS OpenStack username and password credentials ID in Jenkins
Tatyana Leontovich8ac26d72019-05-15 23:33:38 +030030 * JENKINS_PIPELINE_BRANCH Should be set in release/proposed/2019.2.0 when we test non-released version
Tatyana Leontovich4718bdf2019-05-24 12:37:06 +030031 * UPDATE_VERSION Version of update to deploy
Dennis Dmitriev4c383472019-04-12 13:58:06 +030032 * LAB_PARAM_DEFAULTS Filename placed in tcp_tests/templates/_heat_environments, with default parameters for the heat template
Hanna Arhipova31cb1d82021-01-27 09:41:11 +020033 * DEPLOY_EMPTY_NODE Add extra node to heat stack. Node without a role and with salt-minion
Dennis Dmitriev4c383472019-04-12 13:58:06 +030034 *
Dennis Dmitriev02447412019-04-17 18:02:46 +030035 * CREATE_JENKINS_NODE_CREDENTIALS Jenkins username and password with rights to add/delete Jenkins agents
Dennis Dmitriev4c383472019-04-12 13:58:06 +030036 */
37
38@Library('tcp-qa')_
39
40import groovy.xml.XmlUtil
41
42common = new com.mirantis.mk.Common()
43shared = new com.mirantis.system_qa.SharedPipeline()
44
45if (! env.PARENT_NODE_NAME) {
46 error "'PARENT_NODE_NAME' must be set from the parent deployment job!"
47}
48
49currentBuild.description = "${PARENT_NODE_NAME}:${ENV_NAME}"
Hanna Arhipovac2965a42020-01-21 12:27:33 +020050def cfg01_day01_image_name = "cfg01-day01-2019.2.0"
51def ubuntu_vcp_image_name = "ubuntu-vcp-2019.2.0"
52def ubuntu_foundation_image_name = "ubuntu-16.04-foundation-2019.2.0"
Dennis Dmitriev4c383472019-04-12 13:58:06 +030053
Pavel Glazov65e842b2023-05-30 01:32:05 +040054timeout(time: 3, unit: 'HOURS') {
Hanna Arhipova6736dab2020-05-07 14:33:35 +030055 timestamps {
56 node ("${PARENT_NODE_NAME}") {
57 if (! fileExists("${PARENT_WORKSPACE}")) {
58 error "'PARENT_WORKSPACE' contains path to non-existing directory ${PARENT_WORKSPACE} on the node '${PARENT_NODE_NAME}'."
Dennis Dmitriev4c383472019-04-12 13:58:06 +030059 }
Hanna Arhipova6736dab2020-05-07 14:33:35 +030060 dir("${PARENT_WORKSPACE}") {
Dennis Dmitriev4c383472019-04-12 13:58:06 +030061
Hanna Arhipova6736dab2020-05-07 14:33:35 +030062 if (env.TCP_QA_REFS) {
63 stage("Update working dir to patch ${TCP_QA_REFS}") {
64 shared.update_working_dir()
Dmitry Tyzhnenko819f5bf2019-05-29 14:45:09 +030065 }
66 }
Dennis Dmitriev27007322019-05-03 19:21:44 +030067
Hanna Arhipova6736dab2020-05-07 14:33:35 +030068 withCredentials([
69 [$class : 'UsernamePasswordMultiBinding',
70 credentialsId : env.OS_CREDENTIALS,
71 passwordVariable: 'OS_PASSWORD',
72 usernameVariable: 'OS_USERNAME']
73 ]) {
74 env.OS_IDENTITY_API_VERSION = 3
Dennis Dmitriev4c383472019-04-12 13:58:06 +030075
Hanna Arhipova6736dab2020-05-07 14:33:35 +030076 stage("Cleanup: erase ${ENV_NAME} and remove config drive") {
Dennis Dmitriev4c383472019-04-12 13:58:06 +030077
Hanna Arhipova6736dab2020-05-07 14:33:35 +030078 // delete heat stack
79 println "Remove heat stack '${ENV_NAME}'"
80 shared.run_cmd("""\
81 # export OS_IDENTITY_API_VERSION=3
82 # export OS_AUTH_URL=${OS_AUTH_URL}
83 # export OS_USERNAME=${OS_USERNAME}
84 # export OS_PASSWORD=${OS_PASSWORD}
85 # export OS_PROJECT_NAME=${OS_PROJECT_NAME}
86 openstack --insecure stack delete -y ${ENV_NAME} || true
87 timeout 20m /bin/bash -c "while openstack --insecure stack show ${ENV_NAME} -f value -c stack_status; do sleep 10; done"
88 """)
Dennis Dmitriev27007322019-05-03 19:21:44 +030089
Hanna Arhipova6736dab2020-05-07 14:33:35 +030090 println "Remove config drive ISO"
91 shared.run_cmd("""\
92 rm /home/jenkins/images/${CFG01_CONFIG_IMAGE_NAME} || true
93 """)
94 }
95
96 stage("Generate the model") {
97 def IPV4_NET_ADMIN=shared.run_cmd_stdout("./tcp_tests/utils/get_param_heat_template.py management_subnet_cidr").trim().split().last()
98 def IPV4_NET_CONTROL=shared.run_cmd_stdout("./tcp_tests/utils/get_param_heat_template.py control_subnet_cidr").trim().split().last()
99 def IPV4_NET_TENANT=shared.run_cmd_stdout("./tcp_tests/utils/get_param_heat_template.py tenant_subnet_cidr").trim().split().last()
100 def IPV4_NET_EXTERNAL=shared.run_cmd_stdout("./tcp_tests/utils/get_param_heat_template.py external_subnet_cidr").trim().split().last()
101 shared.generate_cookied_model(IPV4_NET_ADMIN, IPV4_NET_CONTROL, IPV4_NET_TENANT, IPV4_NET_EXTERNAL)
102 }
103
104 stage("Generate config drive ISO") {
105 SALT_MASTER_IP=shared.run_cmd_stdout("./tcp_tests/utils/get_param_heat_template.py management_subnet_cfg01_ip").trim().split().last()
106 def ADMIN_NETWORK_GW=shared.run_cmd_stdout("./tcp_tests/utils/get_param_heat_template.py management_subnet_gateway_ip").trim().split().last()
107 shared.generate_configdrive_iso(SALT_MASTER_IP, ADMIN_NETWORK_GW)
108 }
109
110 stage("Upload Ubuntu image for foundation node") {
111 shared.run_cmd("""\
112 if ! openstack --insecure image show ${ubuntu_foundation_image_name} -f value -c name; then
113 wget -O ./${ubuntu_foundation_image_name} https://cloud-images.ubuntu.com/releases/16.04/release/ubuntu-16.04-server-cloudimg-amd64-disk1.img
114 openstack --insecure image create ${ubuntu_foundation_image_name} --file ./${ubuntu_foundation_image_name} --disk-format qcow2 --container-format bare
115 rm ./${ubuntu_foundation_image_name}
116 else
117 echo Image ${ubuntu_foundation_image_name} already exists
118 fi
119 """)
120 }
121
122 stage("Upload cfg01-day01 and VCP images") {
123 shared.run_cmd("""\
124 # export OS_IDENTITY_API_VERSION=3
125 # export OS_AUTH_URL=${OS_AUTH_URL}
126 # export OS_USERNAME=${OS_USERNAME}
127 # export OS_PASSWORD=${OS_PASSWORD}
128 # export OS_PROJECT_NAME=${OS_PROJECT_NAME}
129
130 openstack --insecure image show ${cfg01_day01_image_name} -f value -c name || openstack --insecure image create ${cfg01_day01_image_name} --file ${IMAGE_PATH_CFG01_DAY01} --disk-format qcow2 --container-format bare
131 openstack --insecure image show ${ubuntu_vcp_image_name} -f value -c name || openstack --insecure image create ${ubuntu_vcp_image_name} --file ${MCP_IMAGE_PATH1604} --disk-format qcow2 --container-format bare
132 """)
133 }
134
135 stage("Upload generated config drive ISO into volume on cfg01 node") {
136 shared.run_cmd("""\
137 # export OS_IDENTITY_API_VERSION=3
138 # export OS_AUTH_URL=${OS_AUTH_URL}
139 # export OS_USERNAME=${OS_USERNAME}
140 # export OS_PASSWORD=${OS_PASSWORD}
141 # export OS_PROJECT_NAME=${OS_PROJECT_NAME}
142
143 openstack --insecure image delete cfg01.${ENV_NAME}-config-drive.iso || true
144 sleep 3
145 openstack --insecure image create cfg01.${ENV_NAME}-config-drive.iso --file /home/jenkins/images/${CFG01_CONFIG_IMAGE_NAME} --disk-format iso --container-format bare
146 """)
147 }
148
149 stage("Create Heat stack '${ENV_NAME}'") {
150 // Create stack and wait for CREATE_COMPLETED status, manual analog:
151 // openstack --insecure stack create ${ENV_NAME} \
152 // --template ./tcp_tests/templates/${LAB_CONFIG_NAME}/underlay.hot \
153 // --environment ./tcp_tests/templates/_heat_environments/${LAB_PARAM_DEFAULTS} \
154 // --parameter env_name=${ENV_NAME} --parameter mcp_version=${MCP_VERSION}
155 shared.run_cmd("""\
156 export BOOTSTRAP_TIMEOUT=3600
157 export ENV_MANAGER=heat
158 export TEST_GROUP=test_create_environment
159 export SHUTDOWN_ENV_ON_TEARDOWN=false
160 export PYTHONIOENCODING=UTF-8
161 export REPOSITORY_SUITE=${MCP_VERSION}
162 export UPDATE_VERSION=${UPDATE_VERSION}
163 export ENV_NAME=${ENV_NAME}
164 export LAB_CONFIG_NAME=${LAB_CONFIG_NAME}
165 export LAB_PARAM_DEFAULTS=${LAB_PARAM_DEFAULTS}
Hanna Arhipova31cb1d82021-01-27 09:41:11 +0200166 export DEPLOY_EMPTY_NODE=${DEPLOY_EMPTY_NODE}
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300167 export LOG_NAME=swarm_test_create_environment.log
168 py.test --cache-clear -vvv -s -p no:django -p no:ipdb --junit-xml=deploy_hardware.xml -k \${TEST_GROUP}
169 """)
170 }
171
172 stage("Add the Jenkins slave node") {
173 def jenkins_slave_ip_value_name = "foundation_public_ip"
174 def jenkins_slave_ip = shared.run_cmd_stdout("openstack --insecure stack output show ${ENV_NAME} ${jenkins_slave_ip_value_name} -f value -c output_value").trim().split().last()
175 def jenkins_slave_executors = 2
176 common.printMsg("JENKINS_SLAVE_NODE_NAME=${JENKINS_SLAVE_NODE_NAME}", "green")
177 common.printMsg("JENKINS_SLAVE_IP=${jenkins_slave_ip}", "green")
178
Vladimir Khlyunevddabf7c2023-06-28 05:14:32 +0400179 withCredentials([[$class : 'UsernamePasswordMultiBinding',
180 credentialsId : "${CREATE_JENKINS_NODE_CREDENTIALS}",
181 passwordVariable: 'JENKINS_PASS',
182 usernameVariable: 'JENKINS_USER']]) {
183 sh "curl ${JENKINS_URL}/jnlpJars/jenkins-cli.jar --output jenkins-cli.jar"
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300184
Vladimir Khlyunevddabf7c2023-06-28 05:14:32 +0400185 sh "java -jar jenkins-cli.jar -s ${JENKINS_URL} -auth ${JENKINS_USER}:${JENKINS_PASS} delete-node ${JENKINS_SLAVE_NODE_NAME} || true"
186 create_node_xml="""\
187 <slave>
188 <name>${JENKINS_SLAVE_NODE_NAME}</name>
189 <description>${ENV_NAME}</description>
190 <remoteFS>/home/jenkins/workspace</remoteFS>
191 <numExecutors>${jenkins_slave_executors}</numExecutors>
192 <mode>EXCLUSIVE</mode>
193 <retentionStrategy class="hudson.slaves.RetentionStrategy\$Always"/>
194 <launcher class="hudson.plugins.sshslaves.SSHLauncher">
195 <host>${jenkins_slave_ip}</host>
196 <port>22</port>
197 <credentialsId>${ACCESS_JENKINS_NODE_CREDENTIALS}</credentialsId>
198 </launcher>
199 <label>${ENV_NAME}</label>
200 <nodeProperties/>
201 </slave>""".stripIndent().replaceAll("\\n", "")
202 sh "echo '${create_node_xml}' | java -jar jenkins-cli.jar -s ${JENKINS_URL} -auth ${JENKINS_USER}:${JENKINS_PASS} create-node ${JENKINS_SLAVE_NODE_NAME}"
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300203
Vladimir Khlyunevddabf7c2023-06-28 05:14:32 +0400204 timeout(time: 30, unit: 'MINUTES') {
205 node("${JENKINS_SLAVE_NODE_NAME}") {
206 sh "echo 'ok'"
207 println "Jenkins agent is available now and can executes commands"
208 }
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300209 }
Vladimir Khlyunevddabf7c2023-06-28 05:14:32 +0400210 // Store jenkins agent IP address
211 jenkins_agent_description = "ssh jenkins@${jenkins_slave_ip} # foundation node with Jenkins agent <a href=${JENKINS_URL}/computer/${JENKINS_SLAVE_NODE_NAME}>${JENKINS_SLAVE_NODE_NAME}</a><br>ssh root@${SALT_MASTER_IP} # cfg01 node<br>"
212 writeFile(file: "jenkins_agent_description.txt", text: jenkins_agent_description, encoding: "UTF-8")
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300213
Vladimir Khlyunevddabf7c2023-06-28 05:14:32 +0400214 } // withCredentials
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300215
216 }// stage
217
218 } // withCredentials
219
220 } // dir
221 } // node
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300222
223
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300224 node ("${JENKINS_SLAVE_NODE_NAME}") {
225 dir("${PARENT_WORKSPACE}") {
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300226
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300227 stage("Clean the environment and clone tcp-qa") {
228 deleteDir()
Hanna Arhipova1b92f9b2020-10-05 15:50:25 +0300229 // Install TestRail reporter to upload test results to TestRail
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300230 shared.verbose_sh("""\
Hanna Arhipova01bd0322020-12-21 15:48:07 +0200231 [ -d /home/jenkins/venv_testrail_reporter ] || virtualenv --python=python3.7 /home/jenkins/venv_testrail_reporter
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300232 """, true, false, true)
Vladimir Khlyuneve4368bf2022-06-22 23:43:51 +0400233 sshagent(credentials: ['maintenance-team-ssh']) {
234 shared.run_cmd("""\
Pavel Glazov6583fd52023-05-13 02:56:33 +0400235 . /home/jenkins/venv_testrail_reporter/bin/activate; \
236 pip install urllib3==1.26.6; \
237 pip install git+ssh://maintenance-ci-robot@gerrit.mcp.mirantis.com:29418/mcp/testrail-reporter -U;
Vladimir Khlyuneve4368bf2022-06-22 23:43:51 +0400238 """)
239 }
Hanna Arhipova1b92f9b2020-10-05 15:50:25 +0300240 // Install DEVOPS tools
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300241 shared.verbose_sh("""\
242 [ -d /home/jenkins/fuel-devops30 ] || virtualenv /home/jenkins/fuel-devops30
243 """, true, false, true)
244 shared.run_cmd("""\
245 git clone https://gerrit.mcp.mirantis.com/mcp/tcp-qa ${PARENT_WORKSPACE}
246 """)
Hanna Arhipova1b92f9b2020-10-05 15:50:25 +0300247 // Install TestRail reporter to mark known failures test results to TestRail
248 shared.verbose_sh("""\
Vladimir Khlyunev3725b672022-03-04 16:16:23 +0400249 [ -d /home/jenkins/venv_testrail_analyzer ] || virtualenv --python=python3.7 /home/jenkins/venv_testrail_analyzer
Hanna Arhipova1b92f9b2020-10-05 15:50:25 +0300250 """, true, false, true)
251 shared.run_cmd("""\
Pavel Glazov6583fd52023-05-13 02:56:33 +0400252 . /home/jenkins/venv_testrail_analyzer/bin/activate; \
253 pip install urllib3==1.26.6; \
254 pip install git+https://review.gerrithub.io/ibumarskov/testrail-reporter@b9041b241f3364022cd0ad63510f02aab4352a6b;
Hanna Arhipova1b92f9b2020-10-05 15:50:25 +0300255 """)
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300256 shared.update_working_dir()
dtsapikovd1d6fe82021-11-19 17:45:06 +0400257 // Add info about foundation node for description
258 writeFile(file: "jenkins_agent_description.txt", text: jenkins_agent_description, encoding: "UTF-8")
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300259 }
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300260
261 withCredentials([
262 [$class : 'UsernamePasswordMultiBinding',
263 credentialsId : env.OS_CREDENTIALS,
264 passwordVariable: 'OS_PASSWORD',
265 usernameVariable: 'OS_USERNAME']
266 ]) {
267
268
269 stage("Run the 'underlay' and 'salt-deployed' fixtures to bootstrap salt cluster") {
270 def xml_report_name = "deploy_salt.xml"
271 try {
Hanna Arhipova1b92f9b2020-10-05 15:50:25 +0300272 // deploy_salt.xmli
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300273 shared.run_sh("""\
274 export ENV_NAME=${ENV_NAME}
275 export LAB_CONFIG_NAME=${LAB_CONFIG_NAME}
276 export LAB_PARAM_DEFAULTS=${LAB_PARAM_DEFAULTS}
277 export ENV_MANAGER=heat
278 export SHUTDOWN_ENV_ON_TEARDOWN=false
279 export BOOTSTRAP_TIMEOUT=3600
280 export PYTHONIOENCODING=UTF-8
281 export REPOSITORY_SUITE=${MCP_VERSION}
282 export UPDATE_VERSION=${UPDATE_VERSION}
283 export TEST_GROUP=test_bootstrap_salt
284 export LOG_NAME=swarm_test_bootstrap_salt.log
285 py.test -vvv -s -p no:django -p no:ipdb --junit-xml=${xml_report_name} -k \${TEST_GROUP}
286 """)
287 // Wait for jenkins to start and IO calm down
288 sleep(60)
289
290 } catch (e) {
291 common.printMsg("Saltstack cluster deploy is failed", "purple")
292 if (fileExists(xml_report_name)) {
293 shared.download_logs("deploy_salt_${ENV_NAME}")
294 def String junit_report_xml = readFile(xml_report_name)
295 def String junit_report_xml_pretty = new XmlUtil().serialize(junit_report_xml)
296 throw new Exception(junit_report_xml_pretty)
297 } else {
298 throw e
299 }
Pavel Glazov6bd42c62022-09-23 01:07:18 +0400300 } // finally {
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300301 // TODO(ddmitriev): add checks for salt cluster
Pavel Glazov6bd42c62022-09-23 01:07:18 +0400302 // }
Hanna Arhipova6736dab2020-05-07 14:33:35 +0300303 } // stage
304 } // withCredentials
305 } // dir
306 } // node
307 } // timestamps
Dennis Dmitriev1f08b0c2019-05-27 17:03:53 +0300308} // timeout