Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 1 | /** |
| 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 |
| 16 | * TCP_QA_REFS Reference to the tcp-qa change on review.gerrithub.io, like refs/changes/46/418546/41 |
| 17 | * 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 |
Dennis Dmitriev | d9168b5 | 2018-12-19 18:53:52 +0200 | [diff] [blame] | 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) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 26 | * |
| 27 | */ |
| 28 | |
| 29 | @Library('tcp-qa')_ |
| 30 | |
Dennis Dmitriev | 4780016 | 2018-10-31 11:57:02 +0200 | [diff] [blame] | 31 | import groovy.xml.XmlUtil |
| 32 | |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 33 | common = new com.mirantis.mk.Common() |
| 34 | shared = new com.mirantis.system_qa.SharedPipeline() |
| 35 | |
| 36 | if (! env.PARENT_NODE_NAME) { |
| 37 | error "'PARENT_NODE_NAME' must be set from the parent deployment job!" |
| 38 | } |
| 39 | |
Dennis Dmitriev | 201a35e | 2018-08-06 01:37:05 +0300 | [diff] [blame] | 40 | currentBuild.description = "${PARENT_NODE_NAME}:${ENV_NAME}" |
| 41 | |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 42 | node ("${PARENT_NODE_NAME}") { |
| 43 | if (! fileExists("${PARENT_WORKSPACE}")) { |
| 44 | error "'PARENT_WORKSPACE' contains path to non-existing directory ${PARENT_WORKSPACE} on the node '${PARENT_NODE_NAME}'." |
| 45 | } |
| 46 | dir("${PARENT_WORKSPACE}") { |
Dennis Dmitriev | efe5c0b | 2018-10-24 20:35:26 +0300 | [diff] [blame] | 47 | stage("Cleanup: erase ${ENV_NAME} and remove config drive") { |
| 48 | println "Remove environment ${ENV_NAME}" |
| 49 | shared.run_cmd("""\ |
| 50 | dos.py erase ${ENV_NAME} || true |
| 51 | """) |
| 52 | println "Remove config drive ISO" |
| 53 | shared.run_cmd("""\ |
| 54 | rm /home/jenkins/images/${CFG01_CONFIG_IMAGE_NAME} || true |
| 55 | """) |
| 56 | } |
| 57 | |
| 58 | if (env.TCP_QA_REFS) { |
| 59 | stage("Update working dir to patch ${TCP_QA_REFS}") { |
| 60 | shared.update_working_dir() |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | stage("Create an environment ${ENV_NAME} in disabled state") { |
| 65 | // deploy_hardware.xml |
| 66 | shared.run_cmd("""\ |
| 67 | export ENV_NAME=${ENV_NAME} |
| 68 | export LAB_CONFIG_NAME=${LAB_CONFIG_NAME} |
Dennis Dmitriev | 552454c | 2019-03-21 23:15:51 +0200 | [diff] [blame] | 69 | export ENV_MANAGER=devops |
Dennis Dmitriev | efe5c0b | 2018-10-24 20:35:26 +0300 | [diff] [blame] | 70 | export PYTHONIOENCODING=UTF-8 |
| 71 | export REPOSITORY_SUITE=${MCP_VERSION} |
| 72 | export TEST_GROUP=test_create_environment |
| 73 | py.test -vvv -s -p no:django -p no:ipdb --junit-xml=deploy_hardware.xml -k \${TEST_GROUP} |
| 74 | """) |
| 75 | } |
| 76 | |
| 77 | stage("Generate the model") { |
| 78 | shared.generate_cookied_model() |
| 79 | } |
| 80 | |
| 81 | stage("Generate config drive ISO") { |
| 82 | shared.generate_configdrive_iso() |
| 83 | } |
| 84 | |
| 85 | stage("Upload generated config drive ISO into volume on cfg01 node") { |
| 86 | shared.run_cmd("""\ |
| 87 | # Get SALT_MASTER_HOSTNAME to determine the volume name |
| 88 | . ./tcp_tests/utils/env_salt |
| 89 | virsh vol-upload ${ENV_NAME}_\${SALT_MASTER_HOSTNAME}_config /home/jenkins/images/${CFG01_CONFIG_IMAGE_NAME} --pool default |
| 90 | virsh pool-refresh --pool default |
| 91 | """) |
| 92 | } |
| 93 | |
Dennis Dmitriev | 4780016 | 2018-10-31 11:57:02 +0200 | [diff] [blame] | 94 | stage("Run the 'underlay' and 'salt-deployed' fixtures to bootstrap salt cluster") { |
| 95 | def xml_report_name = "deploy_salt.xml" |
| 96 | try { |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 97 | // deploy_salt.xml |
Dennis Dmitriev | 4780016 | 2018-10-31 11:57:02 +0200 | [diff] [blame] | 98 | shared.run_sh("""\ |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 99 | export ENV_NAME=${ENV_NAME} |
| 100 | export LAB_CONFIG_NAME=${LAB_CONFIG_NAME} |
Dennis Dmitriev | 552454c | 2019-03-21 23:15:51 +0200 | [diff] [blame] | 101 | export ENV_MANAGER=devops |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 102 | export SHUTDOWN_ENV_ON_TEARDOWN=false |
Dennis Dmitriev | 87c22d7 | 2018-11-09 17:18:00 +0200 | [diff] [blame] | 103 | export BOOTSTRAP_TIMEOUT=1800 |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 104 | export PYTHONIOENCODING=UTF-8 |
| 105 | export REPOSITORY_SUITE=${MCP_VERSION} |
| 106 | export TEST_GROUP=test_bootstrap_salt |
Dennis Dmitriev | 4780016 | 2018-10-31 11:57:02 +0200 | [diff] [blame] | 107 | py.test -vvv -s -p no:django -p no:ipdb --junit-xml=${xml_report_name} -k \${TEST_GROUP} |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 108 | """) |
Dennis Dmitriev | 44f6db2 | 2018-10-31 16:07:56 +0200 | [diff] [blame] | 109 | // Wait for jenkins to start and IO calm down |
| 110 | sleep(60) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 111 | |
Dennis Dmitriev | 4780016 | 2018-10-31 11:57:02 +0200 | [diff] [blame] | 112 | } catch (e) { |
| 113 | common.printMsg("Saltstack cluster deploy is failed", "purple") |
| 114 | if (fileExists(xml_report_name)) { |
Dennis Dmitriev | 9cd5c13 | 2018-12-12 17:10:47 +0200 | [diff] [blame] | 115 | shared.download_logs("deploy_salt_${ENV_NAME}") |
Dennis Dmitriev | 4780016 | 2018-10-31 11:57:02 +0200 | [diff] [blame] | 116 | def String junit_report_xml = readFile(xml_report_name) |
| 117 | def String junit_report_xml_pretty = new XmlUtil().serialize(junit_report_xml) |
| 118 | throw new Exception(junit_report_xml_pretty) |
| 119 | } else { |
| 120 | throw e |
| 121 | } |
| 122 | } finally { |
| 123 | // TODO(ddmitriev): analyze the "def currentResult = currentBuild.result ?: 'SUCCESS'" |
| 124 | // and report appropriate data to TestRail |
| 125 | // TODO(ddmitriev): add checks for salt cluster |
| 126 | if ("${env.SHUTDOWN_ENV_ON_TEARDOWN}" == "true") { |
| 127 | shared.run_cmd("""\ |
| 128 | dos.py destroy ${ENV_NAME} |
| 129 | """) |
| 130 | } |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 131 | } |
| 132 | } |
| 133 | } |
| 134 | } |