blob: 261193e45b51340c88e14fddbe20d59706648659 [file] [log] [blame]
Tomáš Kukrál7ded3642017-03-27 15:52:51 +02001/**
2 * Generate cookiecutter cluster by individual products
3 *
4 * Expected parameters:
Tomáš Kukrál7ded3642017-03-27 15:52:51 +02005 * COOKIECUTTER_TEMPLATE_CONTEXT Context parameters for the template generation.
Sergey Galkin8b87f6e2018-10-24 18:40:13 +04006 * CREDENTIALS_ID Credentials id for git
azvyagintsev6d678da2018-11-28 21:19:06 +02007 * TEST_MODEL Run syntax tests for model
azvyagintsev3ed704f2018-07-09 15:49:27 +03008 **/
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +00009import static groovy.json.JsonOutput.toJson
10import static groovy.json.JsonOutput.prettyPrint
Denis Egorenko032a2b72019-04-03 14:56:52 +040011import org.apache.commons.net.util.SubnetUtils
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020012
13common = new com.mirantis.mk.Common()
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +000014common2 = new com.mirantis.mcp.Common()
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020015git = new com.mirantis.mk.Git()
16python = new com.mirantis.mk.Python()
chnyda89191012017-05-29 15:38:35 +020017saltModelTesting = new com.mirantis.mk.SaltModelTesting()
azvyagintsev5b7ec892019-05-15 16:37:34 +030018updateSaltFormulasDuringTest = true
Tomáš Kukrál7ded3642017-03-27 15:52:51 +020019
Aleksey Zvyagintsev4a804212019-02-07 13:02:31 +000020slaveNode = env.getProperty('SLAVE_NODE') ?: 'virtual'
azvyagintsev6d678da2018-11-28 21:19:06 +020021gerritCredentials = env.getProperty('CREDENTIALS_ID') ?: 'gerrit'
22runTestModel = (env.getProperty('TEST_MODEL') ?: true).toBoolean()
azvyagintsev866b19a2018-11-20 18:21:43 +020023distribRevision = 'proposed'
24gitGuessedVersion = false
25
azvyagintsev866b19a2018-11-20 18:21:43 +020026def globalVariatorsUpdate() {
27 def templateContext = readYaml text: env.COOKIECUTTER_TEMPLATE_CONTEXT
28 def context = templateContext['default_context']
29 // TODO add more check's for critical var's
30 // Since we can't pin to any '_branch' variable from context, to identify 'default git revision' -
31 // because each of them, might be 'refs/' variable, we need to add some tricky trigger of using
32 // 'release/XXX' logic. This is totall guess - so,if even those one failed, to definitely must pass
33 // correct variable finally!
34 [context.get('cookiecutter_template_branch'), context.get('shared_reclass_branch'), context.get('mcp_common_scripts_branch')].any { branch ->
35 if (branch.toString().startsWith('release/')) {
36 gitGuessedVersion = branch
37 return true
38 }
39 }
azvyagintsev866b19a2018-11-20 18:21:43 +020040 // Use mcpVersion git tag if not specified branch for cookiecutter-templates
41 if (!context.get('cookiecutter_template_branch')) {
42 context['cookiecutter_template_branch'] = gitGuessedVersion ?: context['mcp_version']
43 }
44 // Don't have n/t/s for cookiecutter-templates repo, therefore use master
45 if (["nightly", "testing", "stable"].contains(context['cookiecutter_template_branch'])) {
46 context['cookiecutter_template_branch'] = 'master'
47 }
48 if (!context.get('shared_reclass_branch')) {
49 context['shared_reclass_branch'] = gitGuessedVersion ?: context['mcp_version']
50 }
51 // Don't have nightly/testing for reclass-system repo, therefore use master
52 if (["nightly", "testing", "stable"].contains(context['shared_reclass_branch'])) {
53 context['shared_reclass_branch'] = 'master'
54 }
55 if (!context.get('mcp_common_scripts_branch')) {
56 // Pin exactly to CC branch, since it might use 'release/XXX' format
57 context['mcp_common_scripts_branch'] = gitGuessedVersion ?: context['mcp_version']
58 }
59 // Don't have n/t/s for mcp-common-scripts repo, therefore use master
60 if (["nightly", "testing", "stable"].contains(context['mcp_common_scripts_branch'])) {
61 context['mcp_common_scripts_branch'] = 'master'
62 }
63 //
64 distribRevision = context['mcp_version']
65 if (['master'].contains(context['mcp_version'])) {
66 distribRevision = 'nightly'
67 }
68 if (distribRevision.contains('/')) {
69 distribRevision = distribRevision.split('/')[-1]
70 }
71 // Check if we are going to test bleeding-edge release, which doesn't have binary release yet
azvyagintsev8e081642019-02-03 19:15:22 +020072 // After 2018q4 releases, need to also check 'static' repo, for example ubuntu.
azvyagintsev4f34f7a2019-02-26 18:47:37 +020073 def binTest = common.checkRemoteBinary(['mcp_version': distribRevision])
azvyagintsev8e081642019-02-03 19:15:22 +020074 if (!binTest.linux_system_repo_url || !binTest.linux_system_repo_ubuntu_url) {
75 common.errorMsg("Binary release: ${distribRevision} not exist or not full. Fallback to 'proposed'! ")
azvyagintsev866b19a2018-11-20 18:21:43 +020076 distribRevision = 'proposed'
77 }
azvyagintsev8e081642019-02-03 19:15:22 +020078
azvyagintsev5400d1d2018-12-11 13:19:29 +020079 // (azvyagintsev) WA for PROD-25732
80 if (context.cookiecutter_template_url.contains('gerrit.mcp.mirantis.com/mk/cookiecutter-templates')) {
81 common.warningMsg('Apply WA for PROD-25732')
82 context.cookiecutter_template_url = 'ssh://gerrit.mcp.mirantis.com:29418/mk/cookiecutter-templates.git'
83 }
azvyagintsev5b7ec892019-05-15 16:37:34 +030084 // check, if we are going to test clear release version, w\o any updates and patches
85 if (!gitGuessedVersion && (distribRevision == context.mcp_version)) {
86 updateSaltFormulasDuringTest = false
87 }
88
Denis Egorenkoc1e1d042019-04-26 08:55:27 +000089 common.infoMsg("Using context:\n" + context)
Aleksey Zvyagintsev7ca28d22019-02-25 11:05:49 +000090 print prettyPrint(toJson(context))
azvyagintsev866b19a2018-11-20 18:21:43 +020091 return context
92
93}
azvyagintsevf252b592018-08-13 18:39:14 +030094
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +000095timeout(time: 1, unit: 'HOURS') {
Aleksey Zvyagintsev7ca28d22019-02-25 11:05:49 +000096 node(slaveNode) {
azvyagintsev866b19a2018-11-20 18:21:43 +020097 def context = globalVariatorsUpdate()
azvyagintsev6d678da2018-11-28 21:19:06 +020098 def RequesterEmail = context.get('email_address', '')
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +000099 def templateEnv = "${env.WORKSPACE}/template"
azvyagintsev4f34f7a2019-02-26 18:47:37 +0200100 // modelEnv - this is reclass root, aka /srv/salt/reclass
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000101 def modelEnv = "${env.WORKSPACE}/model"
102 def testEnv = "${env.WORKSPACE}/test"
103 def pipelineEnv = "${env.WORKSPACE}/pipelines"
Tomáš Kukrál9f6260f2017-03-29 23:58:26 +0200104
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000105 try {
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000106 //
107 def cutterEnv = "${env.WORKSPACE}/cutter"
108 def systemEnv = "${modelEnv}/classes/system"
109 def testResult = false
110 def user
111 wrap([$class: 'BuildUser']) {
112 user = env.BUILD_USER_ID
113 }
azvyagintsev6d678da2018-11-28 21:19:06 +0200114 currentBuild.description = "${context['cluster_name']} ${RequesterEmail}"
azvyagintsev866b19a2018-11-20 18:21:43 +0200115
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000116 stage('Download Cookiecutter template') {
117 sh(script: 'find . -mindepth 1 -delete > /dev/null || true')
118 checkout([
119 $class : 'GitSCM',
120 branches : [[name: 'FETCH_HEAD'],],
121 extensions : [[$class: 'RelativeTargetDirectory', relativeTargetDir: templateEnv]],
122 userRemoteConfigs: [[url: context['cookiecutter_template_url'], refspec: context['cookiecutter_template_branch'], credentialsId: gerritCredentials],],
123 ])
124 }
125 stage('Create empty reclass model') {
126 dir(path: modelEnv) {
azvyagintsev4f34f7a2019-02-26 18:47:37 +0200127 sh 'rm -rfv .git; git init'
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000128 sshagent(credentials: [gerritCredentials]) {
129 sh "git submodule add ${context['shared_reclass_url']} 'classes/system'"
130 }
131 }
132 checkout([
133 $class : 'GitSCM',
134 branches : [[name: 'FETCH_HEAD'],],
135 extensions : [[$class: 'RelativeTargetDirectory', relativeTargetDir: systemEnv]],
136 userRemoteConfigs: [[url: context['shared_reclass_url'], refspec: context['shared_reclass_branch'], credentialsId: gerritCredentials],],
137 ])
azvyagintsev4f34f7a2019-02-26 18:47:37 +0200138 git.commitGitChanges(modelEnv, 'Added new shared reclass submodule', "${user}@localhost", "${user}")
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000139 }
140
141 stage('Generate model') {
Denis Egorenkoc1e1d042019-04-26 08:55:27 +0000142 // GNUPGHOME environment variable is required for all gpg commands
143 // and for python.generateModel execution
144 withEnv(["GNUPGHOME=${env.WORKSPACE}/gpghome"]) {
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300145 if (context['secrets_encryption_enabled'] == 'True') {
Denis Egorenkoc1e1d042019-04-26 08:55:27 +0000146 sh "mkdir gpghome; chmod 700 gpghome"
Dmitry Pyzhovb5c74c72018-12-17 22:08:50 +0300147 def secretKeyID = RequesterEmail ?: "salt@${context['cluster_domain']}".toString()
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300148 if (!context.get('secrets_encryption_private_key')) {
149 def batchData = """
Denis Egorenko131de5f2019-05-16 14:25:40 +0400150 %echo Generating a basic OpenPGP key for Salt-Master
151 %no-protection
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300152 Key-Type: 1
153 Key-Length: 4096
154 Expire-Date: 0
155 Name-Real: ${context['salt_master_hostname']}.${context['cluster_domain']}
156 Name-Email: ${secretKeyID}
Denis Egorenko131de5f2019-05-16 14:25:40 +0400157 %commit
158 %echo done
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300159 """.stripIndent()
azvyagintsev7d6d46c2019-02-11 14:25:41 +0200160 writeFile file: 'gpg-batch.txt', text: batchData
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300161 sh "gpg --gen-key --batch < gpg-batch.txt"
162 sh "gpg --export-secret-key -a ${secretKeyID} > gpgkey.asc"
163 } else {
azvyagintsev7d6d46c2019-02-11 14:25:41 +0200164 writeFile file: 'gpgkey.asc', text: context['secrets_encryption_private_key']
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300165 sh "gpg --import gpgkey.asc"
Denis Egorenko131de5f2019-05-16 14:25:40 +0400166 secretKeyID = sh(returnStdout: true, script: 'gpg --list-secret-keys --with-colons | grep -E "^sec" | awk -F: \'{print \$5}\'').trim()
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300167 }
168 context['secrets_encryption_key_id'] = secretKeyID
169 }
Stanislav Riazanovda45ea02018-12-21 16:12:50 +0400170 if (context.get('cfg_failsafe_ssh_public_key')) {
azvyagintsev7d6d46c2019-02-11 14:25:41 +0200171 writeFile file: 'failsafe-ssh-key.pub', text: context['cfg_failsafe_ssh_public_key']
Stanislav Riazanovda45ea02018-12-21 16:12:50 +0400172 }
azvyagintsev4f34f7a2019-02-26 18:47:37 +0200173 if (!fileExists(new File(templateEnv, 'tox.ini').toString())) {
azvyagintsev06dfe402019-03-22 17:58:53 +0200174 reqs = new File(templateEnv, 'requirements.txt').toString()
175 if (fileExists(reqs)) {
176 python.setupVirtualenv(cutterEnv, 'python2', [], reqs)
177 } else {
178 python.setupCookiecutterVirtualenv(cutterEnv)
179 }
azvyagintsev4f34f7a2019-02-26 18:47:37 +0200180 python.generateModel(common2.dumpYAML(['default_context': context]), 'default_context', context['salt_master_hostname'], cutterEnv, modelEnv, templateEnv, false)
181 } else {
182 // tox-based CC generated structure of reclass,from the root. Otherwise for bw compat, modelEnv
183 // still expect only lower lvl of project, aka model/classes/cluster/XXX/. So,lets dump result into
184 // temp dir, and then copy it over initial structure.
185 reclassTempRootDir = sh(script: "mktemp -d -p ${env.WORKSPACE}", returnStdout: true).trim()
Denis Egorenkoc1e1d042019-04-26 08:55:27 +0000186 python.generateModel(common2.dumpYAML(['default_context': context]), 'default_context', context['salt_master_hostname'], cutterEnv, reclassTempRootDir, templateEnv, false)
azvyagintsev4f34f7a2019-02-26 18:47:37 +0200187 dir(modelEnv) {
188 common.warningMsg('Forming reclass-root structure...')
189 sh("cp -ra ${reclassTempRootDir}/reclass/* .")
190 }
191 }
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300192 git.commitGitChanges(modelEnv, "Create model ${context['cluster_name']}", "${user}@localhost", "${user}")
193 }
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000194 }
195
Denis Egorenkoc1e1d042019-04-26 08:55:27 +0000196 stage("Test") {
azvyagintsev6d678da2018-11-28 21:19:06 +0200197 if (runTestModel) {
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000198 sh("cp -r ${modelEnv} ${testEnv}")
azvyagintsev7d6d46c2019-02-11 14:25:41 +0200199 if (fileExists('gpgkey.asc')) {
200 common.infoMsg('gpgkey.asc found!Copy it into reclass folder for tests..')
201 sh("cp -v gpgkey.asc ${testEnv}/salt_master_pillar.asc")
202 }
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000203 def DockerCName = "${env.JOB_NAME.toLowerCase()}_${env.BUILD_TAG.toLowerCase()}"
azvyagintsev5b7ec892019-05-15 16:37:34 +0300204 common.warningMsg("Attempt to run test against:\n" +
205 "DISTRIB_REVISION from ${distribRevision}\n" +
206 "updateSaltFormulasDuringTest = ${updateSaltFormulasDuringTest}")
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000207 try {
208 def config = [
Denis Egorenko926bc7d2019-02-19 14:27:34 +0400209 'dockerHostname' : "${context['salt_master_hostname']}",
210 'domain' : "${context['cluster_domain']}",
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000211 'reclassEnv' : testEnv,
212 'distribRevision' : distribRevision,
213 'dockerContainerName': DockerCName,
Denis Egorenkod87490e2019-02-26 20:00:41 +0400214 'testContext' : 'salt-model-node',
azvyagintsev5b7ec892019-05-15 16:37:34 +0300215 'dockerExtraOpts' : ['--memory=3g'],
216 'updateSaltFormulas' : updateSaltFormulasDuringTest
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000217 ]
218 testResult = saltModelTesting.testNode(config)
219 common.infoMsg("Test finished: SUCCESS")
220 } catch (Exception ex) {
221 common.warningMsg("Test finished: FAILED")
222 testResult = false
223 }
224 } else {
225 common.warningMsg("Test stage has been skipped!")
226 }
227 }
228 stage("Generate config drives") {
229 // apt package genisoimage is required for this stage
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000230 // download create-config-drive
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000231 def commonScriptsRepoUrl = context['mcp_common_scripts_repo'] ?: 'ssh://gerrit.mcp.mirantis.com:29418/mcp/mcp-common-scripts'
232 checkout([
233 $class : 'GitSCM',
234 branches : [[name: 'FETCH_HEAD'],],
235 extensions : [[$class: 'RelativeTargetDirectory', relativeTargetDir: 'mcp-common-scripts']],
azvyagintsev866b19a2018-11-20 18:21:43 +0200236 userRemoteConfigs: [[url: commonScriptsRepoUrl, refspec: context['mcp_common_scripts_branch'], credentialsId: gerritCredentials],],
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000237 ])
238
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400239 def outdateGeneration = false
240 if (fileExists('mcp-common-scripts/config-drive/create_config_drive.py')) {
241 sh 'cp mcp-common-scripts/config-drive/create_config_drive.py create-config-drive.py'
242 } else {
243 outdateGeneration = true
244 sh 'cp mcp-common-scripts/config-drive/create_config_drive.sh create-config-drive && chmod +x create-config-drive'
245 }
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000246 sh '[ -f mcp-common-scripts/config-drive/master_config.sh ] && cp mcp-common-scripts/config-drive/master_config.sh user_data || cp mcp-common-scripts/config-drive/master_config.yaml user_data'
247
Denis Egorenkoc1e1d042019-04-26 08:55:27 +0000248 sh "git clone --mirror https://github.com/Mirantis/mk-pipelines.git ${pipelineEnv}/mk-pipelines"
249 sh "git clone --mirror https://github.com/Mirantis/pipeline-library.git ${pipelineEnv}/pipeline-library"
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400250 args = [
azvyagintsev1385db92019-03-22 16:05:10 +0200251 "--user-data user_data", "--model ${modelEnv}",
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400252 "--mk-pipelines ${pipelineEnv}/mk-pipelines/", "--pipeline-library ${pipelineEnv}/pipeline-library/"
253 ]
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300254 if (context['secrets_encryption_enabled'] == 'True') {
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400255 args.add('--gpg-key gpgkey.asc')
Dmitry Pyzhov089fb4f2018-12-11 16:58:00 +0300256 }
Stanislav Riazanovda45ea02018-12-21 16:12:50 +0400257 if (context.get('cfg_failsafe_ssh_public_key')) {
Denis Egorenkoaaeda9b2019-02-28 20:55:59 +0400258 if (outdateGeneration) {
259 args.add('--ssh-key failsafe-ssh-key.pub')
260 } else {
Denis Egorenko85ddf0d2019-03-18 18:11:19 +0400261 if (context.get('cfg_failsafe_user')) {
262 args.add('--ssh-keys failsafe-ssh-key.pub')
263 args.add("--cloud-user-name ${context.get('cfg_failsafe_user')}")
264 }
Denis Egorenkoaaeda9b2019-02-28 20:55:59 +0400265 }
Stanislav Riazanovda45ea02018-12-21 16:12:50 +0400266 }
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000267 // load data from model
268 def smc = [:]
269 smc['SALT_MASTER_MINION_ID'] = "${context['salt_master_hostname']}.${context['cluster_domain']}"
270 smc['SALT_MASTER_DEPLOY_IP'] = context['salt_master_management_address']
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400271 if (outdateGeneration) {
272 smc['DEPLOY_NETWORK_GW'] = context['deploy_network_gateway']
273 smc['DEPLOY_NETWORK_NETMASK'] = context['deploy_network_netmask']
274 if (context.get('deploy_network_mtu')) {
275 smc['DEPLOY_NETWORK_MTU'] = context['deploy_network_mtu']
276 }
277 smc['DNS_SERVERS'] = context['dns_server01']
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000278 }
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000279 smc['MCP_VERSION'] = "${context['mcp_version']}"
280 if (context['local_repositories'] == 'True') {
Denis Egorenko6bfa7552019-02-05 19:09:25 +0400281 def localRepoIP = ''
Denis Egorenkof97aec22019-02-05 14:57:33 +0400282 if (context['mcp_version'] in ['2018.4.0', '2018.8.0', '2018.8.0-milestone1', '2018.11.0']) {
Denis Egorenko6bfa7552019-02-05 19:09:25 +0400283 localRepoIP = context['local_repo_url']
Denis Egorenkof97aec22019-02-05 14:57:33 +0400284 smc['MCP_SALT_REPO_URL'] = "http://${localRepoIP}/ubuntu-xenial"
285 } else {
Denis Egorenko6bfa7552019-02-05 19:09:25 +0400286 localRepoIP = context['aptly_server_deploy_address']
Denis Egorenkof97aec22019-02-05 14:57:33 +0400287 smc['MCP_SALT_REPO_URL'] = "http://${localRepoIP}"
288 }
Denis Egorenko6bfa7552019-02-05 19:09:25 +0400289 smc['MCP_SALT_REPO_KEY'] = "http://${localRepoIP}/public.gpg"
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000290 smc['PIPELINES_FROM_ISO'] = 'false'
291 smc['PIPELINE_REPO_URL'] = "http://${localRepoIP}:8088"
292 smc['LOCAL_REPOS'] = 'true'
293 }
294 if (context['upstream_proxy_enabled'] == 'True') {
295 if (context['upstream_proxy_auth_enabled'] == 'True') {
296 smc['http_proxy'] = 'http://' + context['upstream_proxy_user'] + ':' + context['upstream_proxy_password'] + '@' + context['upstream_proxy_address'] + ':' + context['upstream_proxy_port']
297 smc['https_proxy'] = 'http://' + context['upstream_proxy_user'] + ':' + context['upstream_proxy_password'] + '@' + context['upstream_proxy_address'] + ':' + context['upstream_proxy_port']
298 } else {
299 smc['http_proxy'] = 'http://' + context['upstream_proxy_address'] + ':' + context['upstream_proxy_port']
300 smc['https_proxy'] = 'http://' + context['upstream_proxy_address'] + ':' + context['upstream_proxy_port']
301 }
302 }
303
304 for (i in common.entries(smc)) {
305 sh "sed -i 's,${i[0]}=.*,${i[0]}=${i[1]},' user_data"
306 }
307
Denis Egorenko032a2b72019-04-03 14:56:52 +0400308 // calculate netmask
Denis Egorenko1f131b72019-04-05 14:42:48 +0400309 def deployNetworkSubnet = ''
310 if (context.get('deploy_network_subnet')) {
311 def subnet = new SubnetUtils(context['deploy_network_subnet'])
312 deployNetworkSubnet = subnet.getInfo().getNetmask()
313 } else if (context.get('deploy_network_netmask')) { // case for 2018.4.0
314 deployNetworkSubnet = context['deploy_network_netmask']
315 } else {
316 error('Neither context parameter deploy_network_subnet or deploy_network_netmask should be set!')
317 }
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000318 // create cfg config-drive
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400319 if (outdateGeneration) {
azvyagintsev06dfe402019-03-22 17:58:53 +0200320 args += ["--hostname ${context['salt_master_hostname']}", "${context['salt_master_hostname']}.${context['cluster_domain']}-config.iso"]
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400321 sh "./create-config-drive ${args.join(' ')}"
322 } else {
323 args += [
324 "--name ${context['salt_master_hostname']}", "--hostname ${context['salt_master_hostname']}.${context['cluster_domain']}", "--clean-up",
Denis Egorenko032a2b72019-04-03 14:56:52 +0400325 "--ip ${context['salt_master_management_address']}", "--netmask ${deployNetworkSubnet}", "--gateway ${context['deploy_network_gateway']}",
Denis Egorenkoaaeda9b2019-02-28 20:55:59 +0400326 "--dns-nameservers ${context['dns_server01']},${context['dns_server02']}"
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400327 ]
azvyagintsevc4c047a2019-04-04 17:42:48 +0300328 sh "chmod 0755 create-config-drive.py ; ./create-config-drive.py ${args.join(' ')}"
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400329 }
Aleksey Zvyagintsevaa235f22019-04-24 12:46:42 +0000330 sh("mkdir output-${context['cluster_name']} && mv ${context['salt_master_hostname']}.${context['cluster_domain']}-config.iso output-${context['cluster_name']}/")
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000331
332 // save cfg iso to artifacts
Aleksey Zvyagintsevaa235f22019-04-24 12:46:42 +0000333 archiveArtifacts artifacts: "output-${context['cluster_name']}/${context['salt_master_hostname']}.${context['cluster_domain']}-config.iso"
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000334
335 if (context['local_repositories'] == 'True') {
336 def aptlyServerHostname = context.aptly_server_hostname
337 sh "[ -f mcp-common-scripts/config-drive/mirror_config.yaml ] && cp mcp-common-scripts/config-drive/mirror_config.yaml mirror_config || cp mcp-common-scripts/config-drive/mirror_config.sh mirror_config"
338
339 def smc_apt = [:]
340 smc_apt['SALT_MASTER_DEPLOY_IP'] = context['salt_master_management_address']
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400341 if (outdateGeneration) {
342 smc_apt['APTLY_DEPLOY_IP'] = context['aptly_server_deploy_address']
343 smc_apt['APTLY_DEPLOY_NETMASK'] = context['deploy_network_netmask']
344 }
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000345 smc_apt['APTLY_MINION_ID'] = "${aptlyServerHostname}.${context['cluster_domain']}"
346
347 for (i in common.entries(smc_apt)) {
348 sh "sed -i \"s,export ${i[0]}=.*,export ${i[0]}=${i[1]},\" mirror_config"
349 }
350
351 // create apt config-drive
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400352 if (outdateGeneration) {
353 sh "./create-config-drive --user-data mirror_config --hostname ${aptlyServerHostname} ${aptlyServerHostname}.${context['cluster_domain']}-config.iso"
354 } else {
355 args = [
Denis Egorenko032a2b72019-04-03 14:56:52 +0400356 "--ip ${context['aptly_server_deploy_address']}", "--netmask ${deployNetworkSubnet}", "--gateway ${context['deploy_network_gateway']}",
Denis Egorenkoaaeda9b2019-02-28 20:55:59 +0400357 "--user-data mirror_config", "--hostname ${aptlyServerHostname}.${context['cluster_domain']}", "--name ${aptlyServerHostname}", "--clean-up",
358 "--dns-nameservers ${context['dns_server01']},${context['dns_server02']}"
Denis Egorenkoaeaa0132019-02-25 16:55:08 +0400359 ]
360 sh "python ./create-config-drive.py ${args.join(' ')}"
361 }
Aleksey Zvyagintsevaa235f22019-04-24 12:46:42 +0000362 sh("mv ${aptlyServerHostname}.${context['cluster_domain']}-config.iso output-${context['cluster_name']}/")
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000363
364 // save apt iso to artifacts
Aleksey Zvyagintsevaa235f22019-04-24 12:46:42 +0000365 archiveArtifacts artifacts: "output-${context['cluster_name']}/${aptlyServerHostname}.${context['cluster_domain']}-config.iso"
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000366 }
367 }
368
369 stage('Save changes reclass model') {
Denis Egorenkod9865252019-04-24 15:41:57 +0400370 sh(returnStatus: true, script: "tar -czf ${context['cluster_name']}.tar.gz --exclude='*@tmp' -C ${modelEnv} .")
371 archiveArtifacts artifacts: "${context['cluster_name']}.tar.gz"
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000372
azvyagintsev5400d1d2018-12-11 13:19:29 +0200373 if (RequesterEmail != '' && !RequesterEmail.contains('example')) {
azvyagintsev6d678da2018-11-28 21:19:06 +0200374 emailext(to: RequesterEmail,
Aleksey Zvyagintsevaa235f22019-04-24 12:46:42 +0000375 attachmentsPattern: "output-${context['cluster_name']}/*",
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000376 body: "Mirantis Jenkins\n\nRequested reclass model ${context['cluster_name']} has been created and attached to this email.\nEnjoy!\n\nMirantis",
377 subject: "Your Salt model ${context['cluster_name']}")
378 }
Aleksey Zvyagintsevaa235f22019-04-24 12:46:42 +0000379 dir("output-${context['cluster_name']}") {
380 deleteDir()
381 }
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000382 }
383
384 // Fail, but leave possibility to get failed artifacts
azvyagintsev6d678da2018-11-28 21:19:06 +0200385 if (!testResult && runTestModel) {
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000386 common.warningMsg('Test finished: FAILURE. Please check logs and\\or debug failed model manually!')
387 error('Test stage finished: FAILURE')
388 }
389
390 } catch (Throwable e) {
391 currentBuild.result = "FAILURE"
392 currentBuild.description = currentBuild.description ? e.message + " " + currentBuild.description : e.message
393 throw e
394 } finally {
395 stage('Clean workspace directories') {
Aleksey Zvyagintsev7ca28d22019-02-25 11:05:49 +0000396 sh(script: 'find . -mindepth 1 -delete > /dev/null || true')
Aleksey Zvyagintsevb16902d2018-10-29 12:33:48 +0000397 }
398 // common.sendNotification(currentBuild.result,"",["slack"])
Denis Egorenko34c4a3b2019-03-12 12:48:15 +0400399 stage('Save artifacts to Artifactory') {
400 def artifactory = new com.mirantis.mcp.MCPArtifactory()
azvyagintsev06dfe402019-03-22 17:58:53 +0200401 def buildProps = ["context=${context['cluster_name']}"]
Denis Egorenko34c4a3b2019-03-12 12:48:15 +0400402 if (RequesterEmail != '' && !RequesterEmail.contains('example')) {
403 buildProps.add("emailTo=${RequesterEmail}")
404 }
405 def artifactoryLink = artifactory.uploadJobArtifactsToArtifactory([
azvyagintsev06dfe402019-03-22 17:58:53 +0200406 'artifactory' : 'mcp-ci',
Denis Egorenko34c4a3b2019-03-12 12:48:15 +0400407 'artifactoryRepo': "drivetrain-local/${JOB_NAME}/${context['cluster_name']}-${BUILD_NUMBER}",
azvyagintsev06dfe402019-03-22 17:58:53 +0200408 'buildProps' : buildProps,
Denis Egorenko34c4a3b2019-03-12 12:48:15 +0400409 ])
410 currentBuild.description += "<br/>${artifactoryLink}"
411 }
Ruslan Kamaldinov6feef402017-08-02 16:55:58 +0400412 }
Tomáš Kukrál7ded3642017-03-27 15:52:51 +0200413 }
Mikhail Ivanov9f812922017-11-07 18:52:02 +0400414}