blob: bd1ee86af1bc41b7f5c3414d7730f18f78f51642 [file] [log] [blame]
vnaumov33747e12020-05-04 17:35:20 +02001package com.mirantis.mk
vnaumov33747e12020-05-04 17:35:20 +02002
azvyagintsevc17d14b2022-06-06 19:06:33 +03003import static groovy.json.JsonOutput.toJson
4
vnaumov33747e12020-05-04 17:35:20 +02005/**
6 *
7 * KaaS Component Testing Utilities
8 *
9 */
10
Владислав Наумовe5345812020-08-12 16:30:20 +020011/**
12 * Check KaaS Core CICD feature flags
13 * such triggers can be used in case of switching between pipelines,
14 * conditions inside pipelines to reduce dependency on jenkins job builder and jenkins job templates itself
15 *
16 * @return (map)[
17 * ffNameEnabled: (bool) True/False
18 * ]
19 */
20def checkCoreCIFeatureFlags() {
21 def common = new com.mirantis.mk.Common()
22 def ff = [
23 build_artifacts_upgrade: false,
24 ]
25
26 def commitMsg = env.GERRIT_CHANGE_COMMIT_MESSAGE ? new String(env.GERRIT_CHANGE_COMMIT_MESSAGE.decodeBase64()) : ''
27 if (commitMsg ==~ /(?s).*\[ci-build-artifacts-upgrade\].*/) {
28 ff['build_artifacts_upgrade'] = true
29 }
30
31 common.infoMsg("Core ci feature flags status: ${ff}")
32 return ff
33}
vnaumov33747e12020-05-04 17:35:20 +020034
35/**
azvyagintseva12230a2020-06-05 13:24:06 +030036 * Determine scope of test suite against per-commit KaaS deployment based on keywords
Владислав Наумов81777472021-03-09 15:14:27 +040037 * Keyword list: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/hack/ci-gerrit-keywords.md
azvyagintseva12230a2020-06-05 13:24:06 +030038 *
39 * Used for components team to combine test-suites and forward desired parameters to kaas/core deployment jobs
40 * Example scheme:
Владислав Наумовe5345812020-08-12 16:30:20 +020041 * New CR pushed in kubernetes/lcm-ansible -> parsing it'cs commit body and combine test-suite -> trigger deployment jobs from kaas/core
azvyagintseva12230a2020-06-05 13:24:06 +030042 * manage test-suite through Jenkins Job Parameters
43 *
Владислав Наумов6c2afff2020-06-05 12:54:53 +020044 * @return (map)[
45 * deployChildEnabled: (bool) True if need to deploy child cluster during demo-run
46 * runUie2eEnabled: (bool) True if need to run ui-e2e cluster during demo-run
azvyagintseva12230a2020-06-05 13:24:06 +030047 * ]
48 */
vnaumov33747e12020-05-04 17:35:20 +020049def checkDeploymentTestSuite() {
vnaumovbdb90222020-05-04 18:25:50 +020050 def common = new com.mirantis.mk.Common()
51
vnaumov33747e12020-05-04 17:35:20 +020052 // Available triggers and its sane defaults
Владислав Наумов44c64b72020-12-04 20:22:53 +010053 def seedMacOs = env.SEED_MACOS ? env.SEED_MACOS.toBoolean() : false
Владислав Наумов6c2afff2020-06-05 12:54:53 +020054 def deployChild = env.DEPLOY_CHILD_CLUSTER ? env.DEPLOY_CHILD_CLUSTER.toBoolean() : false
55 def upgradeChild = env.UPGRADE_CHILD_CLUSTER ? env.UPGRADE_CHILD_CLUSTER.toBoolean() : false
Sergey Lalovc1cb49f2022-09-27 01:16:25 +040056 def fullUpgradeChild = env.FULL_UPGRADE_CHILD_CLUSTER ? env.FULL_UPGRADE_CHILD_CLUSTER.toBoolean() : false
Mikhail Ivanov38ee4382022-01-27 16:21:51 +040057 def mosDeployChild = env.DEPLOY_MOS_CHILD_CLUSTER ? env.DEPLOY_MOS_CHILD_CLUSTER.toBoolean() : false
58 def mosUpgradeChild = env.UPGRADE_MOS_CHILD_CLUSTER ? env.UPGRADE_MOS_CHILD_CLUSTER.toBoolean() : false
Mikhail Ivanov74504372021-05-21 17:01:06 +040059 def customChildRelease = env.KAAS_CHILD_CLUSTER_RELEASE_NAME ? env.KAAS_CHILD_CLUSTER_RELEASE_NAME : ''
slalov021171f2022-03-04 14:48:38 +040060 def mosTfDeploy = env.MOS_TF_DEPLOY ? env.MOS_TF_DEPLOY.toBoolean() : false
Владислав Наумов0dc99252020-11-13 13:30:48 +010061 def attachBYO = env.ATTACH_BYO ? env.ATTACH_BYO.toBoolean() : false
Владислав Наумовcdbd84e2020-12-01 16:51:09 +010062 def upgradeBYO = env.UPGRADE_BYO ? env.UPGRADE_BYO.toBoolean() : false
Vladislav Naumov7930ab22021-11-22 18:24:24 +010063 def runBYOMatrix = env.RUN_BYO_MATRIX ? env.RUN_BYO_MATRIX.toBoolean() : false
Mikhail Ivanoveabc9d92021-12-30 16:40:14 +040064 def defaultBYOOs = env.DEFAULT_BYO_OS ? env.DEFAULT_BYO_OS.toString() : 'ubuntu'
Владислав Наумов6c2afff2020-06-05 12:54:53 +020065 def upgradeMgmt = env.UPGRADE_MGMT_CLUSTER ? env.UPGRADE_MGMT_CLUSTER.toBoolean() : false
slalov1202bba2022-04-20 22:31:07 +040066 def autoUpgradeMgmt = env.AUTO_UPGRADE_MCC ? env.AUTO_UPGRADE_MCC.toBoolean() : false
Victor Ryzhenkind2b7b662021-08-23 14:18:38 +040067 def enableLMALogging = env.ENABLE_LMA_LOGGING ? env.ENABLE_LMA_LOGGING.toBoolean(): false
Sergey Lalovb2f60372022-09-20 23:58:47 +040068 def deployOsOnMos = env.DEPLOY_OS_ON_MOS? env.DEPLOY_OS_ON_MOS.toBoolean() : false
Владислав Наумов6c2afff2020-06-05 12:54:53 +020069 def runUie2e = env.RUN_UI_E2E ? env.RUN_UI_E2E.toBoolean() : false
Mikhail Ivanovf5e20af2022-03-24 15:38:06 +040070 def runUie2eNew = env.RUN_UI_E2E_NEW ? env.RUN_UI_E2E_NEW.toBoolean() : false
Владислав Наумов6c2afff2020-06-05 12:54:53 +020071 def runMgmtConformance = env.RUN_MGMT_CFM ? env.RUN_MGMT_CFM.toBoolean() : false
Владислав Наумов9cec55d2021-08-03 15:00:59 +020072 def runLMATest = env.RUN_LMA_TEST ? env.RUN_LMA_TEST.toBoolean() : false
Vladyslav Drokc4f9c1b2021-07-22 15:34:24 +020073 def runMgmtUserControllerTest = env.RUN_MGMT_USER_CONTROLLER_TEST ? env.RUN_MGMT_USER_CONTROLLER_TEST.toBoolean() : false
Mikhail Ivanov2907e4d2022-04-25 16:41:21 +040074 def runProxyChildTest = env.RUN_PROXY_CHILD_TEST ? env.RUN_PROXY_CHILD_TEST.toBoolean() : false
Владислав Наумов6c2afff2020-06-05 12:54:53 +020075 def runChildConformance = env.RUN_CHILD_CFM ? env.RUN_CHILD_CFM.toBoolean() : false
76 def fetchServiceBinaries = env.FETCH_BINARIES_FROM_UPSTREAM ? env.FETCH_BINARIES_FROM_UPSTREAM.toBoolean() : false
Vladislav Naumov42b71dc2021-11-22 13:09:42 +010077 def equinixMetalV2ChildDiffMetro = env.EQUINIXMETALV2_CHILD_DIFF_METRO ? env.EQUINIXMETALV2_CHILD_DIFF_METRO.toBoolean() : false
slalov13e579c2022-01-31 21:37:02 +040078 def runMaintenanceTest = env.RUN_MAINTENANCE_TEST ? env.RUN_MAINTENANCE_TEST.toBoolean() : false
slalov0a4947a2022-06-09 15:44:35 +040079 def runContainerregistryTest = env.RUN_CONTAINER_REGISTRY_TEST ? env.RUN_CONTAINER_REGISTRY_TEST.toBoolean() : false
Dmitriy Kasyanov5f910e62022-02-11 14:57:05 +030080 def runMgmtDeleteMasterTest = env.RUN_MGMT_DELETE_MASTER_TEST ? env.RUN_MGMT_DELETE_MASTER_TEST.toBoolean() : false
81 def runRgnlDeleteMasterTest = env.RUN_RGNL_DELETE_MASTER_TEST ? env.RUN_RGNL_DELETE_MASTER_TEST.toBoolean() : false
82 def runChildDeleteMasterTest = env.RUN_CHILD_DELETE_MASTER_TEST ? env.RUN_CHILD_DELETE_MASTER_TEST.toBoolean() : false
Mikhail Nikolaenko7e632cd2022-10-24 16:20:31 +030083 def runGracefulRebootTest = env.RUN_GRACEFUL_REBOOT_TEST ? env.RUN_GRACEFUL_REBOOT_TEST.toBoolean() : false
Sergey Lalovbc68d752022-11-08 13:40:53 +040084 def pauseForDebug = env.PAUSE_FOR_DEBUG ? env.PAUSE_FOR_DEBUG.toBoolean() : false
Dmitriy Kasyanov43cb06e2022-08-17 14:35:39 +030085 def runChildMachineDeletionPolicyTest = env.RUN_CHILD_MACHINE_DELETION_POLICY_TEST ? env.RUN_CHILD_MACHINE_DELETION_POLICY_TEST.toBoolean() : false
Sergey Lalovd3e030e2023-03-16 14:32:47 +040086 def runChildCustomCertTest = env.RUN_CHILD_CUSTOM_CERT_TEST ? env.RUN_CHILD_CUSTOM_CERT_TEST.toBoolean() : false
Sergey Lalov430fcd72023-03-20 17:19:44 +040087 def runByoChildCustomCertTest = env.RUN_BYO_CHILD_CUSTOM_CERT_TEST ? env.RUN_BYO_CHILD_CUSTOM_CERT_TEST.toBoolean() : false
Владислав Наумов765f3bd2020-09-07 18:09:24 +020088 // multiregion configuration from env variable: comma-separated string in form $mgmt_provider,$regional_provider
89 def multiregionalMappings = env.MULTIREGION_SETUP ? multiregionWorkflowParser(env.MULTIREGION_SETUP) : [
90 enabled: false,
91 managementLocation: '',
92 regionLocation: '',
93 ]
Владислав Наумов4eb1da32020-08-31 14:45:16 +020094
Владислав Наумовb8305e22021-02-10 17:23:12 +010095 // proxy customization
96 def proxyConfig = [
Владислав Наумовf8f23fa2021-04-01 16:57:52 +020097 mgmtOffline: env.OFFLINE_MGMT_CLUSTER ? env.OFFLINE_MGMT_CLUSTER.toBoolean() : false,
98 childOffline: env.OFFLINE_CHILD_CLUSTER ? env.OFFLINE_CHILD_CLUSTER.toBoolean() : false,
Владислав Наумов257ea132021-04-14 14:44:13 +020099 childProxy: env.PROXY_CHILD_CLUSTER ? env.PROXY_CHILD_CLUSTER.toBoolean() : false,
Владислав Наумовb8305e22021-02-10 17:23:12 +0100100 ]
101
Владислав Наумов4eb1da32020-08-31 14:45:16 +0200102 // optional demo deployment customization
Владислав Наумов905dd362020-06-08 16:37:01 +0200103 def awsOnDemandDemo = env.ALLOW_AWS_ON_DEMAND ? env.ALLOW_AWS_ON_DEMAND.toBoolean() : false
Владислав Наумовe021b022021-05-06 11:26:38 +0200104 def equinixOnDemandDemo = env.ALLOW_EQUINIX_ON_DEMAND ? env.ALLOW_EQUINIX_ON_DEMAND.toBoolean() : false
Владислав Наумов82305e92021-10-14 20:45:20 +0200105 def equinixMetalV2OnDemandDemo = env.ALLOW_EQUINIXMETALV2_ON_DEMAND ? env.ALLOW_EQUINIXMETALV2_ON_DEMAND.toBoolean() : false
Владислав Наумовf3715802021-05-03 18:06:45 +0200106 def equinixOnAwsDemo = env.EQUINIX_ON_AWS_DEMO ? env.EQUINIX_ON_AWS_DEMO.toBoolean() : false
Владислав Наумов2d3db332021-06-15 15:19:19 +0200107 def azureOnAwsDemo = env.AZURE_ON_AWS_DEMO ? env.AZURE_ON_AWS_DEMO.toBoolean() : false
Владислав Наумовc52dd9d2021-06-28 16:27:29 +0200108 def azureOnDemandDemo = env.ALLOW_AZURE_ON_DEMAND ? env.ALLOW_AZURE_ON_DEMAND.toBoolean() : false
Ivan Berezovskiyf9bcfd62021-03-18 18:41:38 +0400109 def enableVsphereDemo = true
Владислав Наумов4eb1da32020-08-31 14:45:16 +0200110 def enableOSDemo = true
azvyagintsev1761bdc2020-09-04 17:24:12 +0300111 def enableBMDemo = true
Mikhail Ivanovbd1a9fd2022-03-29 21:36:21 +0400112 def enableArtifactsBuild = true
Mikhail Ivanovb6283f72021-11-24 18:34:57 +0400113 def openstackIMC = env.OPENSTACK_CLOUD_LOCATION ? env.OPENSTACK_CLOUD_LOCATION : 'us'
Alexandr Lovtsov36473f32022-04-28 15:46:09 +0300114 def enableVsphereUbuntu = env.VSPHERE_DEPLOY_UBUNTU ? env.VSPHERE_DEPLOY_UBUNTU.toBoolean() : false
Sergey Zhemerdeeve67fb262022-06-21 00:49:34 +0300115 def childOsBootFromVolume = env.OPENSTACK_BOOT_FROM_VOLUME ? env.OPENSTACK_BOOT_FROM_VOLUME.toBoolean() : false
Ivan Berezovskiy29e72b72022-07-12 21:03:24 +0400116 def bootstrapV2Scenario = env.BOOTSTRAP_V2_ENABLED ? env.BOOTSTRAP_V2_ENABLED.toBoolean() : false
Sergey Lalovacec3c12022-07-20 16:00:14 +0400117 def equinixMetalV2Metro = env.EQUINIX_MGMT_METRO ? env.EQUINIX_MGMT_METRO : ''
Mikhail Ivanov3088d3d2022-10-24 14:05:46 +0400118 def enableFips = env.ENABLE_FIPS ? env.ENABLE_FIPS.toBoolean() : false
Mikhail Nikolaenkoc36dea92022-12-12 02:40:40 +0300119 def aioCluster = env.AIO_CLUSTER ? env.AIO_CLUSTER.toBoolean() : false
Mikhail Morgoev58855c12023-02-10 14:57:31 +0100120 def useVsphereVvmtObjects = env.VSPHERE_USE_VVMT_OBJECTS ? env.VSPHERE_USE_VVMT_OBJECTS.toBoolean() : false
vnaumov33747e12020-05-04 17:35:20 +0200121
Владислав Наумов6c2afff2020-06-05 12:54:53 +0200122 def commitMsg = env.GERRIT_CHANGE_COMMIT_MESSAGE ? new String(env.GERRIT_CHANGE_COMMIT_MESSAGE.decodeBase64()) : ''
Владислав Наумовb8305e22021-02-10 17:23:12 +0100123 if (commitMsg ==~ /(?s).*\[mgmt-proxy\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*mgmt-proxy.*/) {
124 proxyConfig['mgmtOffline'] = true
Владислав Наумов70c02422021-04-19 14:29:41 +0200125 common.warningMsg('Forced running offline mgmt deployment, some provider CDN regions for mgmt deployment may be set to *public-ci* to verify proxy configuration')
Владислав Наумовb8305e22021-02-10 17:23:12 +0100126 }
Владислав Наумов44c64b72020-12-04 20:22:53 +0100127 if (commitMsg ==~ /(?s).*\[seed-macos\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*seed-macos.*/) {
128 seedMacOs = true
129 }
slalov574123e2022-04-06 17:24:19 +0400130 if (commitMsg ==~ /(?s).*\[child-deploy\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-deploy.*/ || upgradeChild || runChildConformance || runProxyChildTest) {
vnaumov33747e12020-05-04 17:35:20 +0200131 deployChild = true
132 }
133 if (commitMsg ==~ /(?s).*\[child-upgrade\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-upgrade.*/) {
134 deployChild = true
135 upgradeChild = true
136 }
Sergey Lalovc1cb49f2022-09-27 01:16:25 +0400137 if (commitMsg ==~ /(?s).*\[child-upgrade-full\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-upgrade-full.*/) {
138 deployChild = true
139 upgradeChild = true
140 fullUpgradeChild = true
141 }
Mikhail Ivanoveabc9d92021-12-30 16:40:14 +0400142 def childDeployMatches = (commitMsg =~ /(\[child-deploy\s*(\w|\-)+?\])/)
143 if (childDeployMatches.size() > 0) {
Mikhail Ivanov74504372021-05-21 17:01:06 +0400144 // override child version when it set explicitly
145 deployChild = true
Mikhail Ivanoveabc9d92021-12-30 16:40:14 +0400146 customChildRelease = childDeployMatches[0][0].split('child-deploy')[1].replaceAll('[\\[\\]]', '').trim()
Mikhail Ivanov74504372021-05-21 17:01:06 +0400147 common.warningMsg("Forced child deployment using custom release version ${customChildRelease}")
148 }
Mikhail Ivanov38ee4382022-01-27 16:21:51 +0400149 if (commitMsg ==~ /(?s).*\[mos-child-deploy\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*mos-child-deploy.*/) {
150 mosDeployChild = true
151 }
152 if (commitMsg ==~ /(?s).*\[mos-child-upgrade\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*mos-child-upgrade.*/) {
153 mosDeployChild = true
154 mosUpgradeChild = true
155 }
Владислав Наумов0dc99252020-11-13 13:30:48 +0100156 if (commitMsg ==~ /(?s).*\[byo-attach\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*byo-attach.*/) {
157 attachBYO = true
158 }
Владислав Наумовcdbd84e2020-12-01 16:51:09 +0100159 if (commitMsg ==~ /(?s).*\[byo-upgrade\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*byo-upgrade.*/) {
160 attachBYO = true
161 upgradeBYO = true
162 }
Sergey Lalovacec3c12022-07-20 16:00:14 +0400163 if (commitMsg ==~ /(?s).*\[ui-test-on-all-providers\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*ui-test-on-all-providers.*/) {
164 enableVsphereDemo = true
165 enableOSDemo = true
166 awsOnDemandDemo = true
167 azureOnDemandDemo = true
168 equinixOnDemandDemo = true
169 equinixMetalV2OnDemandDemo = true
170 runUie2e = true
Sergey Lalovacec3c12022-07-20 16:00:14 +0400171 // Edit after fix PRODX-3961
172 enableBMDemo = false
173 }
Mikhail Ivanoveabc9d92021-12-30 16:40:14 +0400174 def byoDeployMatches = (commitMsg =~ /(\[run-byo-matrix\s*(ubuntu|centos)\])/)
175 if (commitMsg ==~ /(?s).*\[run-byo-matrix\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*run-byo-matrix\.*/ || byoDeployMatches.size() > 0) {
Vladislav Naumov7930ab22021-11-22 18:24:24 +0100176 runBYOMatrix = true
177
Mikhail Ivanoveabc9d92021-12-30 16:40:14 +0400178 if (byoDeployMatches.size() > 0) {
179 defaultBYOOs = byoDeployMatches[0][2]
180 common.warningMsg("Custom BYO OS detected, using ${defaultBYOOs}")
181 }
182
Vladislav Naumov7930ab22021-11-22 18:24:24 +0100183 common.warningMsg('Forced byo matrix test via run-byo-matrix, all other byo triggers will be skipped')
184 attachBYO = false
185 upgradeBYO = false
186 }
Владислав Наумов7f8c9872021-03-08 17:33:08 +0400187 if (commitMsg ==~ /(?s).*\[mgmt-upgrade\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*mgmt-upgrade.*/) {
vnaumov33747e12020-05-04 17:35:20 +0200188 upgradeMgmt = true
189 }
slalov1202bba2022-04-20 22:31:07 +0400190 if (commitMsg ==~ /(?s).*\[auto-upgrade\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*auto-upgrade.*/) {
191 autoUpgradeMgmt = true
192 }
Victor Ryzhenkind2b7b662021-08-23 14:18:38 +0400193 if (commitMsg ==~ /(?s).*\[lma-logging\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*lma-logging.*/) {
194 enableLMALogging = true
195 }
Sergey Lalovb2f60372022-09-20 23:58:47 +0400196 if (commitMsg ==~ /(?s).*\[deploy-os-on-mos\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*deploy-os-on-mos.*/) {
197 deployOsOnMos = true
198 mosDeployChild = true
199 openstackIMC = 'eu2'
200 }
Sergey Lalov95040602023-03-07 16:42:16 +0400201 if (commitMsg ==~ /(?s).*\[ui-e2e-nw\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*ui-e2e-nw.*/) {
vnaumov33747e12020-05-04 17:35:20 +0200202 runUie2e = true
203 }
Sergey Lalov95040602023-03-07 16:42:16 +0400204 if (commitMsg ==~ /(?s).*\[ui-e2e-pw\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*ui-e2e-pw.*/) {
Mikhail Ivanovf5e20af2022-03-24 15:38:06 +0400205 runUie2eNew = true
206 }
vnaumov33747e12020-05-04 17:35:20 +0200207 if (commitMsg ==~ /(?s).*\[mgmt-cfm\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*mgmt-cfm.*/) {
208 runMgmtConformance = true
209 }
Vladyslav Drokc4f9c1b2021-07-22 15:34:24 +0200210 if (commitMsg ==~ /(?s).*\[test-user-controller\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*test-user-controller.*/) {
211 runMgmtUserControllerTest = true
212 }
slalov574123e2022-04-06 17:24:19 +0400213 if (commitMsg ==~ /(?s).*\[test-proxy-child\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*test-proxy-child.*/) {
214 runProxyChildTest = true
215 deployChild = true
216 common.infoMsg('Child cluster deployment will be enabled since proxy child test suite will be executed')
217 }
vnaumov33747e12020-05-04 17:35:20 +0200218 if (commitMsg ==~ /(?s).*\[child-cfm\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-cfm.*/) {
219 runChildConformance = true
220 deployChild = true
221 }
Владислав Наумов9cec55d2021-08-03 15:00:59 +0200222 if (commitMsg ==~ /(?s).*\[lma-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*lma-test.*/) {
223 runLMATest = true
Victor Ryzhenkind2b7b662021-08-23 14:18:38 +0400224 enableLMALogging = true
225 common.infoMsg('LMA logging will be enabled since LMA test suite will be executed')
Victor Ryzhenkin15206592021-06-21 17:38:23 +0400226 }
slalov13e579c2022-01-31 21:37:02 +0400227 if (commitMsg ==~ /(?s).*\[maintenance-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*maintenance-test.*/) {
228 runMaintenanceTest = true
229 }
slalov0a4947a2022-06-09 15:44:35 +0400230 if (commitMsg ==~ /(?s).*\[container-registry-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*container-registry-test.*/) {
231 runContainerregistryTest = true
232 }
Dmitriy Kasyanov5f910e62022-02-11 14:57:05 +0300233 if (commitMsg ==~ /(?s).*\[mgmt-delete-master-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*mgmt-delete-master-test.*/) {
234 runMgmtDeleteMasterTest = true
235 }
236 if (commitMsg ==~ /(?s).*\[rgnl-delete-master-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*rgnl-delete-master-test.*/) {
237 runRgnlDeleteMasterTest = true
238 }
239 if (commitMsg ==~ /(?s).*\[child-delete-master-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-delete-master-test.*/) {
240 runChildDeleteMasterTest = true
Dmitriy Kasyanov43cb06e2022-08-17 14:35:39 +0300241 deployChild = true
242 common.infoMsg('Child cluster deployment will be enabled since delete child master node test suite will be executed')
243 }
244 if (commitMsg ==~ /(?s).*\[child-machine-deletion-policy-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-machine-deletion-policy-test.*/) {
245 runChildMachineDeletionPolicyTest = true
246 deployChild = true
247 common.infoMsg('Child cluster deployment will be enabled since machine deletion child policy test suite will be executed')
Dmitriy Kasyanov5f910e62022-02-11 14:57:05 +0300248 }
Mikhail Nikolaenko7e632cd2022-10-24 16:20:31 +0300249 if (commitMsg ==~ /(?s).*\[graceful-reboot-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*graceful-reboot-test.*/) {
250 runGracefulRebootTest = true
251 }
Sergey Lalovbc68d752022-11-08 13:40:53 +0400252 if (commitMsg ==~ /(?s).*\[pause-for-debug\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*pause-for-debug.*/) {
253 pauseForDebug = true
254 }
Владислав Наумовf8f23fa2021-04-01 16:57:52 +0200255 if (commitMsg ==~ /(?s).*\[child-offline\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-offline.*/) {
256 proxyConfig['childOffline'] = true
257 deployChild = true
258 }
Владислав Наумов257ea132021-04-14 14:44:13 +0200259 if (commitMsg ==~ /(?s).*\[child-proxy\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-proxy.*/) {
260 proxyConfig['childOffline'] = true
261 proxyConfig['childProxy'] = true
262 deployChild = true
263 }
vnaumov33747e12020-05-04 17:35:20 +0200264 if (commitMsg ==~ /(?s).*\[fetch.*binaries\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*fetch.*binaries.*/) {
265 fetchServiceBinaries = true
266 }
Владислав Наумовf1665b52021-05-13 10:51:17 +0200267 if (commitMsg ==~ /(?s).*\[equinix-on-aws\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*equinix-on-aws.*/) {
eromanovadf247c32020-12-25 15:44:13 +0400268 equinixOnAwsDemo = true
Владислав Наумовf1665b52021-05-13 10:51:17 +0200269 common.warningMsg('Forced running child cluster deployment on EQUINIX METAL provider based on AWS management cluster, triggered on patchset using custom keyword: \'[equinix-on-aws]\' ')
eromanovadf247c32020-12-25 15:44:13 +0400270 }
Владислав Наумов2d3db332021-06-15 15:19:19 +0200271 if (commitMsg ==~ /(?s).*\[azure-on-aws\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*azure-on-aws.*/) {
272 azureOnAwsDemo = true
273 common.warningMsg('Forced running child cluster deployment on Azure provider based on AWS management cluster, triggered on patchset using custom keyword: \'[azure-on-aws]\' ')
274 }
275 if (commitMsg ==~ /(?s).*\[aws-demo\].*/ ||
276 env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*aws-demo.*/ ||
277 attachBYO ||
278 upgradeBYO ||
Vladislav Naumov7930ab22021-11-22 18:24:24 +0100279 runBYOMatrix ||
Владислав Наумов2d3db332021-06-15 15:19:19 +0200280 seedMacOs ||
281 equinixOnAwsDemo ||
282 azureOnAwsDemo) {
283
vnaumov33747e12020-05-04 17:35:20 +0200284 awsOnDemandDemo = true
Владислав Наумов2d3db332021-06-15 15:19:19 +0200285 common.warningMsg('Running additional kaas deployment with AWS provider, may be forced due applied trigger cross dependencies, follow docs to clarify info')
Владислав Наумов4eb1da32020-08-31 14:45:16 +0200286 }
Владислав Наумовf1665b52021-05-13 10:51:17 +0200287 if (commitMsg ==~ /(?s).*\[equinix-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*equinix-demo\.*/) {
Владислав Наумовe021b022021-05-06 11:26:38 +0200288 equinixOnDemandDemo = true
289 }
Владислав Наумов82305e92021-10-14 20:45:20 +0200290 if (commitMsg ==~ /(?s).*\[equinixmetalv2-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*equinixmetalv2-demo\.*/) {
Владислав Наумов144956f2021-10-14 17:49:19 +0200291 equinixMetalV2OnDemandDemo = true
292 }
Vladislav Naumov42b71dc2021-11-22 13:09:42 +0100293 if (commitMsg ==~ /(?s).*\[equinixmetalv2-child-diff-metro\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*equinixmetalv2-child-diff-metro\.*/) {
294 equinixMetalV2OnDemandDemo = true
295 equinixMetalV2ChildDiffMetro = true
296 }
Владислав Наумовc52dd9d2021-06-28 16:27:29 +0200297 if (commitMsg ==~ /(?s).*\[azure-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*azure-demo\.*/) {
298 azureOnDemandDemo = true
299 }
Sergey Lalov10cb3502023-03-27 22:13:49 +0400300 if (commitMsg ==~ /(?s).*\[disable-all-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*disable-all-demo\.*/) {
301 enableVsphereDemo = false
302 enableOSDemo = false
303 enableBMDemo = false
304 common.errorMsg('vSphere, BM, Openstack demo deployments will be aborted, VF -1 will be set')
305 }
306
Владислав Наумов4eb1da32020-08-31 14:45:16 +0200307 if (commitMsg ==~ /(?s).*\[disable-os-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*disable-os-demo\.*/) {
308 enableOSDemo = false
309 common.errorMsg('Openstack demo deployment will be aborted, VF -1 will be set')
vnaumov33747e12020-05-04 17:35:20 +0200310 }
311
azvyagintsev1761bdc2020-09-04 17:24:12 +0300312 if (commitMsg ==~ /(?s).*\[disable-bm-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*disable-bm-demo\.*/) {
313 enableBMDemo = false
314 common.errorMsg('BM demo deployment will be aborted, VF -1 will be set')
315 }
316
Ivan Berezovskiyf9bcfd62021-03-18 18:41:38 +0400317 if (commitMsg ==~ /(?s).*\[disable-vsphere-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*disable-vsphere-demo\.*/) {
318 enableVsphereDemo = false
319 common.errorMsg('vSphere demo deployment will be aborted, VF -1 will be set')
320 }
Alexandr Lovtsov36473f32022-04-28 15:46:09 +0300321 if (commitMsg ==~ /(?s).*\[vsphere-ubuntu\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*vsphere-ubuntu\.*/) {
322 enableVsphereUbuntu = true
323 common.warningMsg('Ubuntu will be used to deploy vsphere machines')
324 }
Ivan Berezovskiyf9bcfd62021-03-18 18:41:38 +0400325
Mikhail Ivanovbd1a9fd2022-03-29 21:36:21 +0400326 if (commitMsg ==~ /(?s).*\[disable-artifacts-build\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*disable-artifacts-build\.*/) {
327 enableArtifactsBuild = false
328 common.errorMsg('artifacts build will be aborted, VF -1 will be set')
329 }
330
Sergey Zhemerdeeve67fb262022-06-21 00:49:34 +0300331 if (commitMsg ==~ /(?s).*\[child-os-boot-from-volume\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-os-boot-from-volume\.*/) {
332 childOsBootFromVolume = true
333 common.warningMsg('OS will be booted from Ceph volumes')
334 }
335
Sergey Lalovd5efcd52023-03-01 22:42:17 +0400336 if (commitMsg ==~ /(?s).*\[child-custom-cert-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*child-custom-cert-test\.*/) {
337 runChildCustomCertTest = true
338 deployChild = true
339 common.warningMsg('Child cluster deployment will be enabled since custom cert child test suite will be executed')
340 }
341
Sergey Lalov430fcd72023-03-20 17:19:44 +0400342 if (commitMsg ==~ /(?s).*\[byo-child-custom-cert-test\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*byo-child-custom-cert-test\.*/) {
343 runByoChildCustomCertTest = true
344 attachBYO = true
345 common.warningMsg('Byo child cluster deployment will be enabled since custom cert child test suite will be executed')
346 }
347
vnaumov33747e12020-05-04 17:35:20 +0200348 // TODO (vnaumov) remove below condition after moving all releases to UCP
349 def ucpChildMatches = (commitMsg =~ /(\[child-ucp\s*ucp-.*?\])/)
350 if (ucpChildMatches.size() > 0) {
351 deployChild = true
352 common.warningMsg('Forced UCP based child deployment triggered on patchset using custom keyword: \'[child-ucp ucp-5-1-0-3-3-0-example]\' ')
353
354 // TODO(vnaumov) delete after ucp upgrades support
355 common.errorMsg('Child upgrade test will be skipped, UCP upgrades temporally disabled')
356 upgradeChild = false
357 }
358
Mikhail Nikolaenkoc36dea92022-12-12 02:40:40 +0300359 if (commitMsg ==~ /(?s).*\[aio-cluster\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*aio-cluster.*/) {
360 aioCluster = true
361 }
362
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200363 // multiregional tests
364 def multiRegionalMatches = (commitMsg =~ /(\[multiregion\s*.*?\])/)
365 if (multiRegionalMatches.size() > 0) {
366 multiregionalMappings = multiregionWorkflowParser(multiRegionalMatches)
367 }
368 switch (multiregionalMappings['managementLocation']) {
369 case 'aws':
Владислав Наумов53b07e52021-01-07 15:08:27 +0100370 common.warningMsg('Forced running additional kaas deployment with AWS provider according multiregional demo request')
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200371 awsOnDemandDemo = true
Владислав Наумов53b07e52021-01-07 15:08:27 +0100372
373 if (multiregionalMappings['regionLocation'] != 'aws' && seedMacOs) { // macstadium seed node has access only to *public* providers
374 error('incompatible triggers: [seed-macos] and multiregional deployment based on *private* regional provider cannot be applied simultaneously')
375 }
Владислав Наумов3e4b5a32020-09-11 17:05:34 +0200376 break
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200377 case 'os':
378 if (enableOSDemo == false) {
379 error('incompatible triggers: [disable-os-demo] and multiregional deployment based on OSt management region cannot be applied simultaneously')
380 }
Владислав Наумов3e4b5a32020-09-11 17:05:34 +0200381 break
Владислав Наумов865ba6c2021-05-13 13:05:45 +0200382 case 'vsphere':
383 if (enableVsphereDemo == false) {
384 error('incompatible triggers: [disable-vsphere-demo] and multiregional deployment based on Vsphere management region cannot be applied simultaneously')
385 }
386 break
Владислав Наумов5be02942021-05-13 12:34:37 +0200387 case 'equinix':
388 common.warningMsg('Forced running additional kaas deployment with Equinix provider according multiregional demo request')
389 equinixOnDemandDemo = true
eromanova35359162021-12-30 14:13:13 +0400390 break
eromanova8c702ae2021-12-24 17:43:12 +0400391 case 'equinixmetalv2':
392 common.warningMsg('Forced running additional kaas deployment with Equinix Metal V2 provider according multiregional demo request')
393 equinixMetalV2OnDemandDemo = true
eromanova35359162021-12-30 14:13:13 +0400394 break
slalovfd0b7e62021-07-28 18:05:16 +0400395 case 'azure':
396 common.warningMsg('Forced running additional kaas deployment with Azure provider according multiregional demo request')
397 azureOnDemandDemo = true
398 break
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200399 }
400
Владислав Наумовb8305e22021-02-10 17:23:12 +0100401 // CDN configuration
402 def cdnConfig = [
403 mgmt: [
404 openstack: (proxyConfig['mgmtOffline'] == true) ? 'public-ci' : 'internal-ci',
Владислав Наумов70c02422021-04-19 14:29:41 +0200405 vsphere: 'internal-ci',
Владислав Наумовb8305e22021-02-10 17:23:12 +0100406 aws: 'public-ci',
Владислав Наумовe021b022021-05-06 11:26:38 +0200407 equinix: 'public-ci',
Владислав Наумовc52dd9d2021-06-28 16:27:29 +0200408 azure: 'public-ci',
Владислав Наумовf8f23fa2021-04-01 16:57:52 +0200409 ],
Владислав Наумовb8305e22021-02-10 17:23:12 +0100410 ]
411
Mikhail Ivanovb6283f72021-11-24 18:34:57 +0400412 if (commitMsg ==~ /(?s).*\[eu-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*eu-demo.*/) {
413 openstackIMC = 'eu'
Mikhail Ivanovb6283f72021-11-24 18:34:57 +0400414 }
slalov021171f2022-03-04 14:48:38 +0400415 if (commitMsg ==~ /(?s).*\[mos-tf-demo\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*mos-tf-demo.*/) {
416 openstackIMC = 'eu2'
Mikhail Ivanovf05b8252022-04-27 18:14:03 +0400417 }
418 if (openstackIMC == 'eu' || openstackIMC == 'eu2') {
slalov021171f2022-03-04 14:48:38 +0400419 // use internal-eu because on internal-ci with eu cloud image pull takes much time
420 def cdnRegion = (proxyConfig['mgmtOffline'] == true) ? 'public-ci' : 'internal-eu'
421 common.infoMsg("eu2-demo was triggered, force switching CDN region to ${cdnRegion}")
422 cdnConfig['mgmt']['openstack'] = cdnRegion
423 }
Mikhail Ivanovb6283f72021-11-24 18:34:57 +0400424
Владислав Наумов74e2d6e2020-12-30 17:05:40 +0100425 // calculate weight of current demo run to manage lockable resources
Sergey Lalov46deb442022-08-18 12:11:03 +0400426 def demoWeight = deployChild ? 2 : 1 // management = 1, child += 1
Sergey Lalov95040602023-03-07 16:42:16 +0400427 if (runUie2e || runUie2eNew) {
Sergey Lalov46deb442022-08-18 12:11:03 +0400428 demoWeight += 1
429 }
Владислав Наумов74e2d6e2020-12-30 17:05:40 +0100430
Ivan Berezovskiy29e72b72022-07-12 21:03:24 +0400431 if (commitMsg ==~ /(?s).*\[bootstrapv2-scenario\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*bootstrapv2-scenario\.*/) {
432 bootstrapV2Scenario = true
433 }
434
Mikhail Ivanov3088d3d2022-10-24 14:05:46 +0400435 if (commitMsg ==~ /(?s).*\[enable-fips\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*enable-fips\.*/) {
436 enableFips = true
437 }
438
Mikhail Morgoev58855c12023-02-10 14:57:31 +0100439 if (commitMsg ==~ /(?s).*\[vsphere-vvmt-obj\].*/ || env.GERRIT_EVENT_COMMENT_TEXT ==~ /(?s).*vsphere-vvmt-obj\.*/) {
440 useVsphereVvmtObjects = true
441 }
442
Sergey Zhemerdeevdd31ce92022-07-19 14:15:22 +0300443 // parse equinixmetalv2-metro trigger
Sergey Zhemerdeevdd31ce92022-07-19 14:15:22 +0300444 def equinixMetalV2MetroMatcher = (commitMsg =~ /\[equinixmetalv2-metro(\s+.*)?\]/)
445 if (equinixMetalV2OnDemandDemo && equinixMetalV2MetroMatcher.size() > 0) {
Sergey Zhemerdeevcc785e42022-07-22 17:15:47 +0300446 equinixMetalV2Metro = equinixMetalV2MetroMatcher[0][1].trim().toLowerCase()
Sergey Zhemerdeevdd31ce92022-07-19 14:15:22 +0300447 common.infoMsg("Forced Equnix mgmt deployment using custom metro ${equinixMetalV2Metro}")
448 }
449
vnaumov33747e12020-05-04 17:35:20 +0200450 common.infoMsg("""
Mikhail Ivanovb6283f72021-11-24 18:34:57 +0400451 OpenStack Cloud location: ${openstackIMC}
Владислав Наумовb8305e22021-02-10 17:23:12 +0100452 CDN deployment configuration: ${cdnConfig}
453 MCC offline deployment configuration: ${proxyConfig}
Владислав Наумов44c64b72020-12-04 20:22:53 +0100454 Use MacOS node as seed: ${seedMacOs}
vnaumov33747e12020-05-04 17:35:20 +0200455 Child cluster deployment scheduled: ${deployChild}
Mikhail Ivanov74504372021-05-21 17:01:06 +0400456 Custom child cluster release: ${customChildRelease}
vnaumov33747e12020-05-04 17:35:20 +0200457 Child cluster release upgrade scheduled: ${upgradeChild}
Sergey Lalovc1cb49f2022-09-27 01:16:25 +0400458 Full Child cluster release upgrade scheduled: ${fullUpgradeChild}
Mikhail Ivanov38ee4382022-01-27 16:21:51 +0400459 MOS child deploy scheduled: ${mosDeployChild}
460 MOS child upgrade scheduled: ${mosUpgradeChild}
vnaumov33747e12020-05-04 17:35:20 +0200461 Child conformance testing scheduled: ${runChildConformance}
Vladislav Naumov7930ab22021-11-22 18:24:24 +0100462 Single BYO cluster attachment scheduled: ${attachBYO}
463 Single Attached BYO cluster upgrade test scheduled: ${upgradeBYO}
464 BYO test matrix whole suite scheduled: ${runBYOMatrix}
Mikhail Ivanoveabc9d92021-12-30 16:40:14 +0400465 Default BYO OS: ${defaultBYOOs}
vnaumov33747e12020-05-04 17:35:20 +0200466 Mgmt cluster release upgrade scheduled: ${upgradeMgmt}
slalov1202bba2022-04-20 22:31:07 +0400467 Mgmt cluster release auto upgrade scheduled: ${autoUpgradeMgmt}
Victor Ryzhenkind2b7b662021-08-23 14:18:38 +0400468 Mgmt LMA logging enabled: ${enableLMALogging}
Sergey Lalovb2f60372022-09-20 23:58:47 +0400469 Deploy Os on child with mos release ${deployOsOnMos}
vnaumov33747e12020-05-04 17:35:20 +0200470 Mgmt conformance testing scheduled: ${runMgmtConformance}
Владислав Наумов9cec55d2021-08-03 15:00:59 +0200471 LMA testing scheduled: ${runLMATest}
Vladyslav Drokc4f9c1b2021-07-22 15:34:24 +0200472 Mgmt user controller testing scheduled: ${runMgmtUserControllerTest}
vnaumov33747e12020-05-04 17:35:20 +0200473 Mgmt UI e2e testing scheduled: ${runUie2e}
Mikhail Ivanovf5e20af2022-03-24 15:38:06 +0400474 Mgmt UI e2e playwrite testing scheduled: ${runUie2eNew}
slalov13e579c2022-01-31 21:37:02 +0400475 Maintenance test: ${runMaintenanceTest}
slalov0a4947a2022-06-09 15:44:35 +0400476 Container Registry test: ${runContainerregistryTest}
slalov574123e2022-04-06 17:24:19 +0400477 Child proxy test: ${runProxyChildTest}
Mikhail Nikolaenko7e632cd2022-10-24 16:20:31 +0300478 Graceful reboot test: ${runGracefulRebootTest}
Dmitriy Kasyanov5f910e62022-02-11 14:57:05 +0300479 Delete mgmt master node test: ${runMgmtDeleteMasterTest}
480 Delete rgnl master node test: ${runRgnlDeleteMasterTest}
481 Delete child master node test: ${runChildDeleteMasterTest}
Dmitriy Kasyanov43cb06e2022-08-17 14:35:39 +0300482 Child machine deletion policy test: ${runChildMachineDeletionPolicyTest}
Sergey Lalovd5efcd52023-03-01 22:42:17 +0400483 Custom cert test for child clusters: ${runChildCustomCertTest}
Sergey Lalov430fcd72023-03-20 17:19:44 +0400484 Custom cert test for Byo child clusters: ${runByoChildCustomCertTest}
Владислав Наумов4eb1da32020-08-31 14:45:16 +0200485 AWS provider deployment scheduled: ${awsOnDemandDemo}
Владислав Наумовe021b022021-05-06 11:26:38 +0200486 Equinix provider deployment scheduled: ${equinixOnDemandDemo}
Владислав Наумов144956f2021-10-14 17:49:19 +0200487 EquinixmetalV2 provider deployment scheduled: ${equinixMetalV2OnDemandDemo}
Vladislav Naumov42b71dc2021-11-22 13:09:42 +0100488 EquinixmetalV2 child deploy in a separate metro scheduled: ${equinixMetalV2ChildDiffMetro}
Sergey Zhemerdeev019c45a2022-08-13 00:09:07 +0300489 EquinixmetalV2 mgmt will be deployed on the metro: ${equinixMetalV2Metro?:'auto'}
Владислав Наумовf1665b52021-05-13 10:51:17 +0200490 Equinix@AWS child cluster deployment scheduled: ${equinixOnAwsDemo}
Владислав Наумовc52dd9d2021-06-28 16:27:29 +0200491 Azure provider deployment scheduled: ${azureOnDemandDemo}
Владислав Наумов2d3db332021-06-15 15:19:19 +0200492 Azure@AWS child cluster deployment scheduled: ${azureOnAwsDemo}
Ivan Berezovskiyf9bcfd62021-03-18 18:41:38 +0400493 VSPHERE provider deployment scheduled: ${enableVsphereDemo}
Владислав Наумов4eb1da32020-08-31 14:45:16 +0200494 OS provider deployment scheduled: ${enableOSDemo}
azvyagintsev1761bdc2020-09-04 17:24:12 +0300495 BM provider deployment scheduled: ${enableBMDemo}
Alexandr Lovtsov36473f32022-04-28 15:46:09 +0300496 Ubuntu on vSphere scheduled: ${enableVsphereUbuntu}
Mikhail Ivanovbd1a9fd2022-03-29 21:36:21 +0400497 Artifacts build scheduled: ${enableArtifactsBuild}
Sergey Zhemerdeeve67fb262022-06-21 00:49:34 +0300498 Boot OS child from Ceph volumes: ${childOsBootFromVolume}
Владислав Наумовf793fe32020-09-11 15:19:19 +0200499 Multiregional configuration: ${multiregionalMappings}
vnaumov33747e12020-05-04 17:35:20 +0200500 Service binaries fetching scheduled: ${fetchServiceBinaries}
Владислав Наумов74e2d6e2020-12-30 17:05:40 +0100501 Current weight of the demo run: ${demoWeight} (Used to manage lockable resources)
Ivan Berezovskiy29e72b72022-07-12 21:03:24 +0400502 Bootstrap v2 scenario enabled: ${bootstrapV2Scenario}
Mikhail Ivanov3088d3d2022-10-24 14:05:46 +0400503 FIPS enabled: ${enableFips}
Sergey Lalovbc68d752022-11-08 13:40:53 +0400504 Pause for debug enabled: ${pauseForDebug}
Mikhail Nikolaenkoc36dea92022-12-12 02:40:40 +0300505 AIO cluster: ${aioCluster}
Mikhail Morgoev58855c12023-02-10 14:57:31 +0100506 Use Vsphere VVMT Objects: ${useVsphereVvmtObjects}
Владислав Наумов81777472021-03-09 15:14:27 +0400507 Triggers: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/hack/ci-gerrit-keywords.md""")
vnaumov33747e12020-05-04 17:35:20 +0200508 return [
Dmitriy Kasyanov43cb06e2022-08-17 14:35:39 +0300509 osCloudLocation : openstackIMC,
510 cdnConfig : cdnConfig,
511 proxyConfig : proxyConfig,
512 useMacOsSeedNode : seedMacOs,
513 deployChildEnabled : deployChild,
514 childDeployCustomRelease : customChildRelease,
515 upgradeChildEnabled : upgradeChild,
516 fullUpgradeChildEnabled : fullUpgradeChild,
517 mosDeployChildEnabled : mosDeployChild,
518 mosUpgradeChildEnabled : mosUpgradeChild,
519 runChildConformanceEnabled : runChildConformance,
520 attachBYOEnabled : attachBYO,
521 upgradeBYOEnabled : upgradeBYO,
522 runBYOMatrixEnabled : runBYOMatrix,
523 defaultBYOOs : defaultBYOOs,
524 upgradeMgmtEnabled : upgradeMgmt,
525 autoUpgradeMgmtEnabled : autoUpgradeMgmt,
526 enableLMALoggingEnabled : enableLMALogging,
527 deployOsOnMosEnabled : deployOsOnMos,
528 runUie2eEnabled : runUie2e,
529 runUie2eNewEnabled : runUie2eNew,
530 runMgmtConformanceEnabled : runMgmtConformance,
531 runMaintenanceTestEnabled : runMaintenanceTest,
532 runContainerregistryTestEnabled : runContainerregistryTest,
533 runGracefulRebootTestEnabled : runGracefulRebootTest,
534 pauseForDebugEnabled : pauseForDebug,
535 runMgmtDeleteMasterTestEnabled : runMgmtDeleteMasterTest,
536 runRgnlDeleteMasterTestEnabled : runRgnlDeleteMasterTest,
537 runChildDeleteMasterTestEnabled : runChildDeleteMasterTest,
Sergey Lalovd5efcd52023-03-01 22:42:17 +0400538 runChildCustomCertTestEnabled : runChildCustomCertTest,
Sergey Lalov430fcd72023-03-20 17:19:44 +0400539 runByoChildCustomCertTestEnabled : runByoChildCustomCertTest,
Dmitriy Kasyanov43cb06e2022-08-17 14:35:39 +0300540 runChildMachineDeletionPolicyTestEnabled : runChildMachineDeletionPolicyTest,
541 runLMATestEnabled : runLMATest,
542 runMgmtUserControllerTestEnabled : runMgmtUserControllerTest,
543 runProxyChildTestEnabled : runProxyChildTest,
544 fetchServiceBinariesEnabled : fetchServiceBinaries,
545 awsOnDemandDemoEnabled : awsOnDemandDemo,
546 equinixOnDemandDemoEnabled : equinixOnDemandDemo,
547 equinixMetalV2OnDemandDemoEnabled : equinixMetalV2OnDemandDemo,
548 equinixMetalV2ChildDiffMetroEnabled : equinixMetalV2ChildDiffMetro,
549 equinixOnAwsDemoEnabled : equinixOnAwsDemo,
550 azureOnDemandDemoEnabled : azureOnDemandDemo,
551 azureOnAwsDemoEnabled : azureOnAwsDemo,
552 vsphereDemoEnabled : enableVsphereDemo,
553 vsphereOnDemandDemoEnabled : enableVsphereDemo, // TODO: remove after MCC 2.7 is out
554 bmDemoEnabled : enableBMDemo,
555 osDemoEnabled : enableOSDemo,
556 vsphereUbuntuEnabled : enableVsphereUbuntu,
557 artifactsBuildEnabled : enableArtifactsBuild,
558 childOsBootFromVolume : childOsBootFromVolume,
559 multiregionalConfiguration : multiregionalMappings,
560 demoWeight : demoWeight,
561 bootstrapV2Scenario : bootstrapV2Scenario,
562 equinixMetalV2Metro : equinixMetalV2Metro,
Mikhail Nikolaenkoc36dea92022-12-12 02:40:40 +0300563 enableFips : enableFips,
Mikhail Morgoev58855c12023-02-10 14:57:31 +0100564 aioCluster : aioCluster,
565 useVsphereVvmtObjects : useVsphereVvmtObjects]
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200566}
567
568/**
569 * Determine management and regional setup for demo workflow scenario
570 *
571 *
Sergey Zhemerdeevdd31ce92022-07-19 14:15:22 +0300572 * @param: keyword (string) string , represents keyword trigger, specified in gerrit commit body, like `[multiregion aws,os]`
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200573 or Jenkins environment string variable in form like 'aws,os'
574 * @return (map)[
575 enabled: (bool),
576 * managementLocation: (string), //aws,os
577 * regionLocation: (string), //aws,os
578 * ]
579 */
580def multiregionWorkflowParser(keyword) {
Владислав Наумов8c0c39d2020-09-11 14:46:48 +0200581 def common = new com.mirantis.mk.Common()
eromanova8c702ae2021-12-24 17:43:12 +0400582 def supportedManagementProviders = ['os', 'aws', 'vsphere', 'equinix', 'equinixmetalv2', 'azure']
583 def supportedRegionalProviders = ['os', 'vsphere', 'equinix', 'equinixmetalv2', 'bm', 'azure', 'aws']
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200584
585 def clusterTypes = ''
Владислав Наумов38ed7bf2020-09-11 14:43:39 +0200586 if (keyword.toString().contains('multiregion')) {
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200587 common.infoMsg('Multiregion definition configured via gerrit keyword trigger')
588 clusterTypes = keyword[0][0].split('multiregion')[1].replaceAll('[\\[\\]]', '').trim().split(',')
589 } else {
590 common.infoMsg('Multiregion definition configured via environment variable')
591 clusterTypes = keyword.trim().split(',')
592 }
593
594 if (clusterTypes.size() != 2) {
Владислав Наумов482fb502020-10-30 17:59:27 +0100595 error("Incorrect regions definiton, valid scheme: [multiregion ${management}, ${region}], got: ${clusterTypes}")
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200596 }
597
Владислав Наумовf793fe32020-09-11 15:19:19 +0200598 def desiredManagementProvider = clusterTypes[0].trim()
599 def desiredRegionalProvider = clusterTypes[1].trim()
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200600 if (! supportedManagementProviders.contains(desiredManagementProvider) || ! supportedRegionalProviders.contains(desiredRegionalProvider)) {
601 error("""unsupported management <-> regional bundle, available options:
Владислав Наумовf793fe32020-09-11 15:19:19 +0200602 management providers list - ${supportedManagementProviders}
603 regional providers list - ${supportedRegionalProviders}""")
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200604 }
605
606 return [
607 enabled: true,
608 managementLocation: desiredManagementProvider,
609 regionLocation: desiredRegionalProvider,
610 ]
vnaumov33747e12020-05-04 17:35:20 +0200611}
612
613/**
614 * Determine if custom si tests/pipelines refspec forwarded from gerrit change request
615
Владислав Наумов81777472021-03-09 15:14:27 +0400616 * Keyword list: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/hack/ci-gerrit-keywords.md
vnaumov33747e12020-05-04 17:35:20 +0200617 * Used for components team to test component changes w/ custom SI refspecs using kaas/core deployment jobs
618 * Example scheme:
619 * New CR pushed in kubernetes/lcm-ansible -> parsing it's commit body and get custom test refspecs -> trigger deployment jobs from kaas/core
620 * manage refspecs through Jenkins Job Parameters
621 *
azvyagintseva12230a2020-06-05 13:24:06 +0300622 * @return (map)[* siTests: (string) final refspec for si-tests
vnaumov33747e12020-05-04 17:35:20 +0200623 * siPipelines: (string) final refspec for si-pipelines
624 * ]
625 */
626def checkCustomSIRefspec() {
vnaumovbdb90222020-05-04 18:25:50 +0200627 def common = new com.mirantis.mk.Common()
628
vnaumov33747e12020-05-04 17:35:20 +0200629 // Available triggers and its sane defaults
Владислав Наумов6c2afff2020-06-05 12:54:53 +0200630 def siTestsRefspec = env.SI_TESTS_REFSPEC ?: 'master'
631 def siPipelinesRefspec = env.SI_PIPELINES_REFSPEC ?: 'master'
Владислав Наумов2db15e22020-07-14 12:29:22 +0200632 def siTestsDockerImage = env.SI_TESTS_DOCKER_IMAGE ?: 'docker-dev-kaas-local.docker.mirantis.net/mirantis/kaas/si-test'
633 def siTestsDockerImageTag = env.SI_TESTS_DOCKER_IMAGE_TAG ?: 'master'
Владислав Наумов6c2afff2020-06-05 12:54:53 +0200634 def commitMsg = env.GERRIT_CHANGE_COMMIT_MESSAGE ? new String(env.GERRIT_CHANGE_COMMIT_MESSAGE.decodeBase64()) : ''
vnaumov33747e12020-05-04 17:35:20 +0200635
636 def siTestMatches = (commitMsg =~ /(\[si-tests-ref\s*refs\/changes\/.*?\])/)
637 def siPipelinesMatches = (commitMsg =~ /(\[si-pipelines-ref\s*refs\/changes\/.*?\])/)
638
639 if (siTestMatches.size() > 0) {
640 siTestsRefspec = siTestMatches[0][0].split('si-tests-ref')[1].replaceAll('[\\[\\]]', '').trim()
Владислав Наумов7f6c0882021-03-23 19:10:57 +0400641 siTestsDockerImage = "docker-review-local.docker.mirantis.net/review/kaas-si-test-${siTestsRefspec.split('/')[-2]}"
Владислав Наумов2db15e22020-07-14 12:29:22 +0200642 siTestsDockerImageTag = siTestsRefspec.split('/')[-1]
vnaumov33747e12020-05-04 17:35:20 +0200643 }
644 if (siPipelinesMatches.size() > 0) {
645 siPipelinesRefspec = siPipelinesMatches[0][0].split('si-pipelines-ref')[1].replaceAll('[\\[\\]]', '').trim()
646 }
647
648 common.infoMsg("""
649 kaas/si-pipelines will be fetched from: ${siPipelinesRefspec}
650 kaas/si-tests will be fetched from: ${siTestsRefspec}
Владислав Наумов2db15e22020-07-14 12:29:22 +0200651 kaas/si-tests as dockerImage will be fetched from: ${siTestsDockerImage}:${siTestsDockerImageTag}
Владислав Наумов81777472021-03-09 15:14:27 +0400652 Keywords: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/hack/ci-gerrit-keywords.md""")
Владислав Наумов2db15e22020-07-14 12:29:22 +0200653 return [siTests: siTestsRefspec, siPipelines: siPipelinesRefspec, siTestsDockerImage: siTestsDockerImage, siTestsDockerImageTag: siTestsDockerImageTag]
vnaumov33747e12020-05-04 17:35:20 +0200654}
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200655
Владислав Наумов9080f372020-06-08 13:57:16 +0200656/**
Владислав Наумов418042b2020-07-09 18:31:10 +0200657 * Parse additional configuration for kaas component CICD repo
Владислав Наумов30a516c2020-07-09 13:15:41 +0200658 * @param configurationFile (str) path to configuration file in yaml format
659 *
660 * @return (map)[ siTestsFeatureFlags (string) dedicated feature flags that will be used in SI tests,
Alexandr Lovtsov1c78e452022-08-29 20:57:51 +0300661 * siTestsFeatureFlagsStable (string) dedicated feature flags that will be used in SI tests for deploying stable release
Владислав Наумов30a516c2020-07-09 13:15:41 +0200662 * ]
663 */
664def parseKaaSComponentCIParameters(configurationFile){
665 def common = new com.mirantis.mk.Common()
666 def ciConfig = readYaml file: configurationFile
667 def ciSpec = [
668 siTestsFeatureFlags: env.SI_TESTS_FEATURE_FLAGS ?: '',
Alexandr Lovtsov1c78e452022-08-29 20:57:51 +0300669 siTestsFeatureFlagsStable: env.SI_TESTS_FEATURE_FLAGS_STABLE ?: '',
Владислав Наумов30a516c2020-07-09 13:15:41 +0200670 ]
671
Alexandr Lovtsov1c78e452022-08-29 20:57:51 +0300672 // If exists and not empty
673 if (ciConfig.getOrDefault('si-tests-feature-flags', [])) {
Владислав Наумов30a516c2020-07-09 13:15:41 +0200674 common.infoMsg("""SI tests feature flags customization detected,
675 results will be merged with existing flags: [${ciSpec['siTestsFeatureFlags']}] identification...""")
676
677 def ffMeta = ciSpec['siTestsFeatureFlags'].tokenize(',').collect { it.trim() }
678 ffMeta.addAll(ciConfig['si-tests-feature-flags'])
Владислав Наумов30a516c2020-07-09 13:15:41 +0200679
Владислав Наумовcb5ffca2020-07-14 15:28:36 +0200680 ciSpec['siTestsFeatureFlags'] = ffMeta.unique().join(',')
Владислав Наумов30a516c2020-07-09 13:15:41 +0200681 common.infoMsg("SI tests custom feature flags: ${ciSpec['siTestsFeatureFlags']}")
682 }
Alexandr Lovtsov1c78e452022-08-29 20:57:51 +0300683 if (ciConfig.getOrDefault('si-tests-feature-flags-stable', [])) {
684 common.infoMsg("""SI tests feature flags for stable release customization detected,
685 results will be merged with existing flags: [${ciSpec['siTestsFeatureFlagsStable']}] identification...""")
686
687 def ffMeta = ciSpec['siTestsFeatureFlagsStable'].tokenize(',').collect { it.trim() }
688 ffMeta.addAll(ciConfig['si-tests-feature-flags-stable'])
689
690 ciSpec['siTestsFeatureFlagsStable'] = ffMeta.unique().join(',')
691 common.infoMsg("SI tests custom feature flags for stable release: ${ciSpec['siTestsFeatureFlagsStable']}")
692 }
Владислав Наумов30a516c2020-07-09 13:15:41 +0200693
694 common.infoMsg("""Additional ci configuration parsed successfully:
Alexandr Lovtsov1c78e452022-08-29 20:57:51 +0300695 siTestsFeatureFlags: ${ciSpec['siTestsFeatureFlags']}
696 siTestsFeatureFlagsStable: ${ciSpec['siTestsFeatureFlagsStable']}""")
Владислав Наумов30a516c2020-07-09 13:15:41 +0200697 return ciSpec
698}
699
700/**
701 * Determine if custom kaas core/pipelines refspec forwarded from gerrit change request
Владислав Наумов9080f372020-06-08 13:57:16 +0200702
Владислав Наумов81777472021-03-09 15:14:27 +0400703 * Keyword list: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/hack/ci-gerrit-keywords.md
Владислав Наумов9080f372020-06-08 13:57:16 +0200704 * Used for components team to test component changes w/ custom Core refspecs using kaas/core deployment jobs
705 * Example scheme:
706 * New CR pushed in kubernetes/lcm-ansible -> parsing it's commit body and get custom test refspecs -> trigger deployment jobs from kaas/core
707 * manage refspecs through Jenkins Job Parameters
708 *
709 * @return (map)[ core: (string) final refspec for kaas/core
710 * corePipelines: (string) final refspec for pipelines in kaas/core
711 * ]
712 */
713def checkCustomCoreRefspec() {
714 def common = new com.mirantis.mk.Common()
715
716 // Available triggers and its sane defaults
717 def coreRefspec = env.KAAS_CORE_REFSPEC ?: 'master'
718 // by default using value of GERRIT_REFSPEC parameter in *kaas/core jobs*
719 def corePipelinesRefspec = env.KAAS_PIPELINE_REFSPEC ?: '\$GERRIT_REFSPEC'
720 def commitMsg = env.GERRIT_CHANGE_COMMIT_MESSAGE ? new String(env.GERRIT_CHANGE_COMMIT_MESSAGE.decodeBase64()) : ''
721
722 def coreMatches = (commitMsg =~ /(\[core-ref\s*refs\/changes\/.*?\])/)
723 def corePipelinesMatches = (commitMsg =~ /(\[core-pipelines-ref\s*refs\/changes\/.*?\])/)
724
725 if (coreMatches.size() > 0) {
726 coreRefspec = coreMatches[0][0].split('core-ref')[1].replaceAll('[\\[\\]]', '').trim()
727 }
728 if (corePipelinesMatches.size() > 0) {
729 corePipelinesRefspec = corePipelinesMatches[0][0].split('core-pipelines-ref')[1].replaceAll('[\\[\\]]', '').trim()
730 }
731
732 common.infoMsg("""
733 kaas/core will be fetched from: ${coreRefspec}
734 kaas/core pipelines will be fetched from: ${corePipelinesRefspec}
Владислав Наумов81777472021-03-09 15:14:27 +0400735 Keywords: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/hack/ci-gerrit-keywords.md""")
Владислав Наумов9080f372020-06-08 13:57:16 +0200736 return [core: coreRefspec, corePipelines: corePipelinesRefspec]
737}
738
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200739
740/**
Владислав Наумов92288d92020-07-13 18:36:21 +0200741 * generate Jenkins Parameter objects from from text parameter with additonal kaas core context
742 * needed to forward inside kaas core set of jobs
743 *
744 * @param context (string) Representation of the string enviroment variables needed for kaas core jobs in yaml format
745 * @return (list)[ string(name: '', value: ''),
746 * ]
747 */
748def generateKaaSVarsFromContext(context) {
749 def common = new com.mirantis.mk.Common()
750 def parameters = []
751 def config = readYaml text: context
752
753 config.each { k,v ->
754 common.infoMsg("Custom KaaS Core context parameter: ${k}=${v}")
755 parameters.add(string(name: k, value: v))
756 }
757
758 return parameters
759}
760
761/**
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200762 * Trigger KaaS demo jobs based on AWS/OS providers with customized test suite, parsed from external sources (gerrit commit/jj vars)
Владислав Наумов81777472021-03-09 15:14:27 +0400763 * Keyword list: https://gerrit.mcp.mirantis.com/plugins/gitiles/kaas/core/+/refs/heads/master/hack/ci-gerrit-keywords.md
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200764 * Used for components team to test component changes w/ customized SI tests/refspecs using kaas/core deployment jobs
765 *
Владислав Наумов418042b2020-07-09 18:31:10 +0200766 * @param: component (string) component name [iam, lcm, stacklight]
767 * @param: patchSpec (string) Patch for kaas/cluster releases in json format
768 * @param: configurationFile (string) Additional file for component repo CI config in yaml format
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200769 */
Владислав Наумов92288d92020-07-13 18:36:21 +0200770def triggerPatchedComponentDemo(component, patchSpec = '', configurationFile = '.ci-parameters.yaml', coreContext = '') {
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200771 def common = new com.mirantis.mk.Common()
772 // Determine if custom trigger keywords forwarded from gerrit
773 def triggers = checkDeploymentTestSuite()
774 // Determine SI refspecs
775 def siRefspec = checkCustomSIRefspec()
Владислав Наумов9080f372020-06-08 13:57:16 +0200776 // Determine Core refspecs
777 def coreRefspec = checkCustomCoreRefspec()
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200778
Владислав Наумов418042b2020-07-09 18:31:10 +0200779 // Determine component repo ci configuration
780 def ciSpec = [:]
781 def componentFeatureFlags = env.SI_TESTS_FEATURE_FLAGS ?: ''
782 if (fileExists(configurationFile)) {
783 common.infoMsg('Component CI configuration file detected, parsing...')
784 ciSpec = parseKaaSComponentCIParameters(configurationFile)
785 componentFeatureFlags = ciSpec['siTestsFeatureFlags']
786 } else {
787 common.warningMsg('''Component CI configuration file is not exists,
Владислав Наумовc17dd552020-07-29 17:07:38 +0200788 several code-management features may be unavailable,
Владислав Наумов92288d92020-07-13 18:36:21 +0200789 follow https://mirantis.jira.com/wiki/spaces/QA/pages/2310832276/SI-tests+feature+flags#%5BUpdated%5D-Using-a-feature-flag
790 to create the configuration file''')
Владислав Наумов418042b2020-07-09 18:31:10 +0200791 }
Ivan Berezovskiy91ede502021-05-13 21:05:36 +0400792
793 def platforms = []
794 if (component == 'ipam' && triggers.vsphereDemoEnabled) {
795 // Currently only vsphere demo is required for IPAM component
796 platforms.add('vsphere')
797 } else {
798 if (triggers.osDemoEnabled) {
799 platforms.add('openstack')
800 }
801 if (triggers.awsOnDemandDemoEnabled) {
802 platforms.add('aws')
803 }
804 if (triggers.equinixOnDemandDemoEnabled) {
805 platforms.add('equinix')
806 }
Владислав Наумов144956f2021-10-14 17:49:19 +0200807 if (triggers.equinixMetalV2OnDemandDemoEnabled) {
808 platforms.add('equinixmetalv2')
809 }
Владислав Наумовc52dd9d2021-06-28 16:27:29 +0200810 if (triggers.azureOnDemandDemoEnabled) {
811 platforms.add('azure')
812 }
Ivan Berezovskiyb0229d02021-05-17 16:55:18 +0400813 if (triggers.vsphereDemoEnabled) {
814 platforms.add('vsphere')
815 }
Ivan Berezovskiy91ede502021-05-13 21:05:36 +0400816 }
817
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200818 def jobs = [:]
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200819 def parameters = [
Владислав Наумов9080f372020-06-08 13:57:16 +0200820 string(name: 'GERRIT_REFSPEC', value: coreRefspec.core),
821 string(name: 'KAAS_PIPELINE_REFSPEC', value: coreRefspec.corePipelines),
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200822 string(name: 'SI_TESTS_REFSPEC', value: siRefspec.siTests),
Владислав Наумов418042b2020-07-09 18:31:10 +0200823 string(name: 'SI_TESTS_FEATURE_FLAGS', value: componentFeatureFlags),
Владислав Наумов2db15e22020-07-14 12:29:22 +0200824 string(name: 'SI_TESTS_DOCKER_IMAGE', value: siRefspec.siTestsDockerImage),
825 string(name: 'SI_TESTS_DOCKER_IMAGE_TAG', value: siRefspec.siTestsDockerImageTag),
Владислав Наумов4a5c3242020-06-08 14:36:11 +0200826 string(name: 'SI_PIPELINES_REFSPEC', value: siRefspec.siPipelines),
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200827 string(name: 'CUSTOM_RELEASE_PATCH_SPEC', value: patchSpec),
Mikhail Ivanov74504372021-05-21 17:01:06 +0400828 string(name: 'KAAS_CHILD_CLUSTER_RELEASE_NAME', value: triggers.childDeployCustomRelease),
Mikhail Ivanovb6283f72021-11-24 18:34:57 +0400829 string(name: 'OPENSTACK_CLOUD_LOCATION', value: triggers.osCloudLocation),
Владислав Наумовb8305e22021-02-10 17:23:12 +0100830 booleanParam(name: 'OFFLINE_MGMT_CLUSTER', value: triggers.proxyConfig['mgmtOffline']),
Владислав Наумовf8f23fa2021-04-01 16:57:52 +0200831 booleanParam(name: 'OFFLINE_CHILD_CLUSTER', value: triggers.proxyConfig['childOffline']),
Владислав Наумов257ea132021-04-14 14:44:13 +0200832 booleanParam(name: 'PROXY_CHILD_CLUSTER', value: triggers.proxyConfig['childProxy']),
Владислав Наумов44c64b72020-12-04 20:22:53 +0100833 booleanParam(name: 'SEED_MACOS', value: triggers.useMacOsSeedNode),
Владислав Наумов080d9412020-07-29 13:05:14 +0200834 booleanParam(name: 'UPGRADE_MGMT_CLUSTER', value: triggers.upgradeMgmtEnabled),
slalov1202bba2022-04-20 22:31:07 +0400835 booleanParam(name: 'AUTO_UPGRADE_MCC', value: triggers.autoUpgradeMgmtEnabled),
Victor Ryzhenkind2b7b662021-08-23 14:18:38 +0400836 booleanParam(name: 'ENABLE_LMA_LOGGING', value: triggers.enableLMALoggingEnabled),
Sergey Lalovb2f60372022-09-20 23:58:47 +0400837 booleanParam(name: 'DEPLOY_OS_ON_MOS', value: triggers.deployOsOnMosEnabled),
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200838 booleanParam(name: 'RUN_UI_E2E', value: triggers.runUie2eEnabled),
Владислав Наумов080d9412020-07-29 13:05:14 +0200839 booleanParam(name: 'RUN_MGMT_CFM', value: triggers.runMgmtConformanceEnabled),
slalov0a4947a2022-06-09 15:44:35 +0400840 booleanParam(name: 'RUN_MAINTENANCE_TEST', value: triggers.runMaintenanceTestEnabled),
841 booleanParam(name: 'RUN_CONTAINER_REGISTRY_TEST', value: triggers.runContainerregistryTestEnabled),
Mikhail Nikolaenko7e632cd2022-10-24 16:20:31 +0300842 booleanParam(name: 'RUN_GRACEFUL_REBOOT_TEST', value: triggers.runGracefulRebootTestEnabled),
Dmitriy Kasyanov5f910e62022-02-11 14:57:05 +0300843 booleanParam(name: 'RUN_MGMT_DELETE_MASTER_TEST', value: triggers.runMgmtDeleteMasterTestEnabled),
844 booleanParam(name: 'RUN_RGNL_DELETE_MASTER_TEST', value: triggers.runRgnlDeleteMasterTestEnabled),
845 booleanParam(name: 'RUN_CHILD_DELETE_MASTER_TEST', value: triggers.runChildDeleteMasterTestEnabled),
Sergey Lalovd5efcd52023-03-01 22:42:17 +0400846 booleanParam(name: 'RUN_CHILD_CUSTOM_CERT_TEST', value: triggers.runChildCustomCertTestEnabled),
Sergey Lalov430fcd72023-03-20 17:19:44 +0400847 booleanParam(name: 'RUN_BYO_CHILD_CUSTOM_CERT_TEST', value: triggers.runByoChildCustomCertTestEnabled),
Dmitriy Kasyanov43cb06e2022-08-17 14:35:39 +0300848 booleanParam(name: 'RUN_CHILD_MACHINE_DELETION_POLICY_TEST', value: triggers.runChildMachineDeletionPolicyTestEnabled),
Владислав Наумов9cec55d2021-08-03 15:00:59 +0200849 booleanParam(name: 'RUN_LMA_TEST', value: triggers.runLMATestEnabled),
Vladyslav Drokc4f9c1b2021-07-22 15:34:24 +0200850 booleanParam(name: 'RUN_MGMT_USER_CONTROLLER_TEST', value: triggers.runMgmtUserControllerTestEnabled),
Владислав Наумов080d9412020-07-29 13:05:14 +0200851 booleanParam(name: 'DEPLOY_CHILD_CLUSTER', value: triggers.deployChildEnabled),
852 booleanParam(name: 'UPGRADE_CHILD_CLUSTER', value: triggers.upgradeChildEnabled),
Sergey Lalovc1cb49f2022-09-27 01:16:25 +0400853 booleanParam(name: 'FULL_UPGRADE_CHILD_CLUSTER', value: triggers.fullUpgradeChildEnabled),
slalov574123e2022-04-06 17:24:19 +0400854 booleanParam(name: 'RUN_PROXY_CHILD_TEST', value: triggers.runProxyChildTestEnabled),
Владислав Наумов0dc99252020-11-13 13:30:48 +0100855 booleanParam(name: 'ATTACH_BYO', value: triggers.attachBYOEnabled),
Владислав Наумовcdbd84e2020-12-01 16:51:09 +0100856 booleanParam(name: 'UPGRADE_BYO', value: triggers.upgradeBYOEnabled),
Vladislav Naumov7930ab22021-11-22 18:24:24 +0100857 booleanParam(name: 'RUN_BYO_MATRIX', value: triggers.runBYOMatrixEnabled),
Владислав Наумов080d9412020-07-29 13:05:14 +0200858 booleanParam(name: 'RUN_CHILD_CFM', value: triggers.runChildConformanceEnabled),
Ivan Berezovskiycbf9eeb2021-03-22 15:57:32 +0400859 booleanParam(name: 'ALLOW_AWS_ON_DEMAND', value: triggers.awsOnDemandDemoEnabled),
Владислав Наумовe021b022021-05-06 11:26:38 +0200860 booleanParam(name: 'ALLOW_EQUINIX_ON_DEMAND', value: triggers.equinixOnDemandDemoEnabled),
Владислав Наумов82305e92021-10-14 20:45:20 +0200861 booleanParam(name: 'ALLOW_EQUINIXMETALV2_ON_DEMAND', value: triggers.equinixMetalV2OnDemandDemoEnabled),
Vladislav Naumov42b71dc2021-11-22 13:09:42 +0100862 booleanParam(name: 'EQUINIXMETALV2_CHILD_DIFF_METRO', value: triggers.equinixMetalV2ChildDiffMetroEnabled),
eromanovad3397512021-04-01 20:19:19 +0400863 booleanParam(name: 'EQUINIX_ON_AWS_DEMO', value: triggers.equinixOnAwsDemoEnabled),
Владислав Наумовc52dd9d2021-06-28 16:27:29 +0200864 booleanParam(name: 'ALLOW_AZURE_ON_DEMAND', value: triggers.azureOnDemandDemoEnabled),
Владислав Наумов2d3db332021-06-15 15:19:19 +0200865 booleanParam(name: 'AZURE_ON_AWS_DEMO', value: triggers.azureOnAwsDemoEnabled),
Sergey Zhemerdeev9074f6e2022-06-07 12:03:16 +0300866 booleanParam(name: 'VSPHERE_DEPLOY_UBUNTU', value: triggers.vsphereUbuntuEnabled),
Sergey Lalovbc68d752022-11-08 13:40:53 +0400867 booleanParam(name: 'PAUSE_FOR_DEBUG', value: triggers.pauseForDebugEnabled),
Mikhail Nikolaenkoc36dea92022-12-12 02:40:40 +0300868 booleanParam(name: 'ENABLE_FIPS', value: triggers.enableFips),
869 booleanParam(name: 'AIO_CLUSTER', value: triggers.aioCluster),
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200870 ]
Владислав Наумов92288d92020-07-13 18:36:21 +0200871
Владислав Наумов765f3bd2020-09-07 18:09:24 +0200872 // customize multiregional demo
873 if (triggers.multiregionalConfiguration.enabled) {
874 parameters.add(string(name: 'MULTIREGION_SETUP',
875 value: "${triggers.multiregionalConfiguration.managementLocation},${triggers.multiregionalConfiguration.regionLocation}"
876 ))
877 }
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200878
Владислав Наумов92288d92020-07-13 18:36:21 +0200879 // Determine component team custom context
880 if (coreContext != '') {
881 common.infoMsg('Additional KaaS Core context detected, will be forwarded into kaas core cicd...')
882 def additionalParameters = generateKaaSVarsFromContext(coreContext)
Владислав Наумовbef51a92020-10-01 17:36:51 +0200883 parameters.addAll(additionalParameters)
Владислав Наумов92288d92020-07-13 18:36:21 +0200884 }
885
Владислав Наумовaa430612020-06-08 17:18:31 +0200886 def jobResults = []
Ivan Berezovskiy91ede502021-05-13 21:05:36 +0400887
888 platforms.each { platform ->
889 jobs["kaas-core-${platform}-patched-${component}"] = {
Vladislav Naumov5313a202021-04-07 17:13:39 +0000890 try {
Ivan Berezovskiy91ede502021-05-13 21:05:36 +0400891 common.infoMsg("Deploy: patched KaaS demo with ${platform} provider")
892 def job_info = build job: "kaas-testing-core-${platform}-workflow-${component}", parameters: parameters, wait: true
893 def build_description = job_info.getDescription()
894 def build_result = job_info.getResult()
Vladislav Naumov5313a202021-04-07 17:13:39 +0000895 jobResults.add(build_result)
Владислав Наумовd044e842020-06-17 15:33:43 +0200896
Vladislav Naumov5313a202021-04-07 17:13:39 +0000897 if (build_description) {
898 currentBuild.description += build_description
899 }
900 } finally {
Ivan Berezovskiy91ede502021-05-13 21:05:36 +0400901 common.infoMsg("Patched KaaS demo with ${platform} provider finished")
Vladislav Naumov5313a202021-04-07 17:13:39 +0000902 }
903 }
904 }
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200905
906 common.infoMsg('Trigger KaaS demo deployments according to defined provider set')
Владислав Наумов37f7f842021-03-09 16:08:39 +0400907 if (jobs.size() == 0) {
908 error('No demo jobs matched with keywords, execution will be aborted, at least 1 provider should be enabled')
909 }
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200910 // Limit build concurency workaround examples: https://issues.jenkins-ci.org/browse/JENKINS-44085
911 parallel jobs
Владислав Наумовaa430612020-06-08 17:18:31 +0200912
913 if (jobResults.contains('FAILURE')) {
Владислав Наумовf86b1112020-06-09 14:04:48 +0200914 common.infoMsg('One of parallel downstream jobs is failed, mark executor job as failed')
Владислав Наумовaa430612020-06-08 17:18:31 +0200915 currentBuild.result = 'FAILURE'
916 }
Владислав Наумов2a982ff2020-06-02 19:06:46 +0200917}
Владислав Наумов30a516c2020-07-09 13:15:41 +0200918
919
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400920/**
921 * Function currently supported to be called from aws or vsphere demos. It gets particular demo context
Владислав Наумов33e1e812021-08-17 17:09:25 +0200922 * and generate proper lockResources data and netMap data for vsphere,equinix related clusters.
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400923 *
924 * @param: callBackDemo (string) Demo which requested to generate lockResources [aws or vsphere]
925 * @param: triggers (map) Custom trigger keywords forwarded from gerrit
926 * @param: multiregionalConfiguration (map) Multiregional configuration
927 * @return (map) Return aggregated map with lockResources and netMap
928 */
929
930
931def generateLockResources(callBackDemo, triggers) {
932 def common = new com.mirantis.mk.Common()
Владислав Наумов33e1e812021-08-17 17:09:25 +0200933 def netMap = [
934 vsphere: [:],
935 equinix: [:],
936 ]
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400937 // Define vsphere locklabels with initial quantity
938 def lockLabels = [
939 vsphere_networking_core_ci: 0,
940 vsphere_offline_networking_core_ci: 0,
941 ]
942 def deployChild = triggers.deployChildEnabled
slalov27833272022-06-30 02:13:50 +0400943 def testUiVsphere = triggers.runUie2eEnabled
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400944 def multiregionConfig = triggers.multiregionalConfiguration
945 def runMultiregion = multiregionConfig.enabled
946
947 // Generate vsphere netMap and lockLabels based on demo context
948 switch (callBackDemo) {
949 case 'aws':
950 // Add aws specific lock label with quantity calculated based on single mgmt deploy or mgmt + child
951 lockLabels['aws_core_ci_queue'] = triggers.demoWeight
Sergey Kolekonovf4c1f492022-02-03 14:44:45 +0400952 if (triggers.runBYOMatrixEnabled) { lockLabels['aws_core_ci_queue'] += 6 }
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400953
954 // Define netMap for Vsphere region
Mikhail Ivanov90a27fa2022-05-30 15:18:24 +0400955 if (runMultiregion && multiregionConfig.managementLocation == 'aws') {
956 if (multiregionConfig.regionLocation == 'vsphere') {
957 if (deployChild) {
958 addToProviderNetMap(netMap, 'vsphere', 'regional-child')
959 }
960 addToProviderNetMap(netMap, 'vsphere', 'region')
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400961 }
Mikhail Ivanov90a27fa2022-05-30 15:18:24 +0400962
963 if (multiregionConfig.regionLocation == 'azure') {
964 lockLabels['azure_core_ci_queue'] = 1
965 if (deployChild) {
966 lockLabels['azure_core_ci_queue'] += 1
967 }
968 }
969 }
970 if (triggers.azureOnAwsDemoEnabled) {
971 lockLabels['azure_core_ci_queue'] = 1
972 }
973
974 if (triggers.equinixOnAwsDemoEnabled) {
975 lockLabels['equinix_core_ci_queue'] = 1
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400976 }
977 break
978 case 'vsphere':
Владислав Наумов33e1e812021-08-17 17:09:25 +0200979 addToProviderNetMap(netMap, 'vsphere', 'mgmt')
slalov27833272022-06-30 02:13:50 +0400980 if (deployChild || testUiVsphere) {
Владислав Наумов33e1e812021-08-17 17:09:25 +0200981 addToProviderNetMap(netMap, 'vsphere', 'child')
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400982 }
983 if (runMultiregion && multiregionConfig.managementLocation == 'vsphere' &&
984 multiregionConfig.regionLocation == 'vsphere') {
985 if (deployChild) {
Владислав Наумов33e1e812021-08-17 17:09:25 +0200986 addToProviderNetMap(netMap, 'vsphere', 'regional-child')
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400987 }
Владислав Наумов33e1e812021-08-17 17:09:25 +0200988 addToProviderNetMap(netMap, 'vsphere', 'region')
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +0400989 }
990 break
Mikhail Ivanov90a27fa2022-05-30 15:18:24 +0400991 case 'azure':
992 lockLabels['azure_core_ci_queue'] = triggers.demoWeight
993 if (runMultiregion && multiregionConfig.managementLocation == 'azure') {
994 if (multiregionConfig.regionLocation == 'aws') {
995 lockLabels['aws_core_ci_queue'] = 1
996 if (deployChild) {
997 lockLabels['aws_core_ci_queue'] += 1
998 }
999 }
1000
1001 if (multiregionConfig.regionLocation == 'equinix') {
1002 lockLabels['equinix_core_ci_queue'] = 1
1003 if (deployChild) {
1004 lockLabels['equinix_core_ci_queue'] +=1
1005 }
1006 }
1007 }
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +04001008 default:
Mikhail Ivanov90a27fa2022-05-30 15:18:24 +04001009 error('Supposed to be called from aws, azure or vsphere demos only')
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +04001010 }
1011
1012 // Checking gerrit triggers and manage lock label quantity and network types in case of Offline deployment
1013 // Vsphere labels only
Владислав Наумов33e1e812021-08-17 17:09:25 +02001014 netMap['vsphere'].each { clusterType, netConfig ->
1015 if (triggers.proxyConfig["${clusterType}Offline"] == true ||
1016 (clusterType == 'regional-child' && triggers.proxyConfig['childOffline'] == true) ||
1017 (clusterType == 'region' && triggers.proxyConfig['mgmtOffline'])) {
1018
1019 netMap['vsphere'][clusterType]['netName'] = 'offline'
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +04001020 lockLabels['vsphere_offline_networking_core_ci']++
1021 } else {
1022 lockLabels['vsphere_networking_core_ci']++
1023 }
1024 }
1025
1026 // generate lock metadata
1027 def lockResources = []
1028 lockLabels.each { label, quantity ->
1029 if (quantity > 0) {
1030 def res = [
1031 label: label,
1032 quantity: quantity,
1033 ]
1034 lockResources.add(res)
1035 }
1036 }
1037
1038 common.infoMsg("""Generated vsphere netMap: ${netMap}
1039 Generated lockResources: ${lockResources}""")
1040
1041 return [
1042 netMap: netMap,
1043 lockResources: lockResources,
1044 ]
1045}
1046
1047/**
1048 * Function gets vsphere netMap or empty map and adds new vsphere clusterType with default netName
1049 * and empty rangeConfig to the this map.
1050 *
Владислав Наумов33e1e812021-08-17 17:09:25 +02001051 * @param: netMap (string) vsphere, equinix netMap or empty map
1052 * @param: provider (string) provider type
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +04001053 * @param: clusterType (string) Vsphere cluster type
1054 */
1055
Владислав Наумов33e1e812021-08-17 17:09:25 +02001056def addToProviderNetMap (netMap, provider, clusterType) {
1057 switch (provider) {
1058 case 'equinix':
1059 netMap[provider][clusterType] = [
1060 vlanConfig: '',
1061 ]
1062 break
1063 case 'vsphere':
1064 netMap[provider][clusterType] = [
1065 netName: 'default',
1066 rangeConfig: '',
1067 ]
1068 break
1069 default:
1070 error('Net map locks supported for Equinix/Vsphere providers only')
1071 }
Stanislav Riazanov78fa7df2021-05-28 20:28:59 +04001072}
Dmitry Teselkinfce71aa2022-03-05 19:36:52 +03001073
1074/**
1075* getCIKeywordsFromCommitMsg parses commit message and returns all gerrit keywords with their values as a list of maps.
1076* Each element (map) contains keys 'key' for keyword name and 'value' for its value.
1077* If keyword contains only 'key' part then 'value' is boolean True.
1078* This function does not perform keywords validation.
1079* First line of a commit message is ignored.
1080* To use '[' or ']' characters inside keyword prepend it with backslash '\'.
1081* TODO: Remove backslash chars from values if they prepend '[' or ']'.
1082**/
1083
1084List getCIKeywordsFromCommitMsg() {
1085 String commitMsg = env.GERRIT_CHANGE_COMMIT_MESSAGE ? new String(env.GERRIT_CHANGE_COMMIT_MESSAGE.decodeBase64()) : ''
1086 List commitMsgLines = commitMsg.split('\n')
1087 List keywords = []
1088 if (commitMsgLines.size() < 2) {
1089 return keywords
1090 }
1091
1092 String commitMsgBody = commitMsgLines[1..-1].join('\n')
1093
1094 // Split commit message body to chunks using '[' or ']' as delimiter,
1095 // ignoring them if prepended by backslash (regex negative lookbehind).
1096 // Resulting list will have chunks between '[' and ']' at odd indexes.
1097 List parts = commitMsgBody.split(/(?<!\\)[\[\]]/)
1098
1099 // Iterate chunks by odd indexes only, trim values and split to
1100 // <key> / <value> pair where <key> is the part of a sting before the first
1101 // whitespace delimiter, and <value> is the rest (may include whitespaces).
1102 // If there is no whitespace in the string then this is a 'switch'
1103 // and <value> will be boolean True.
1104 for (i = 1; i < parts.size(); i += 2) {
1105 def (key, value) = (parts[i].trim().split(/\s+/, 2) + [true, ])[0..1]
1106 keywords.add(['key': key, 'value': value])
1107 }
1108
1109 return keywords
1110}
1111
1112/**
1113* getJobsParamsFromCommitMsg parses list of CI keywords and returns values of 'job-params' keyword
1114* that were specified for given job name. `job-params` keyword has the following structure
1115*
1116* [job-params <job name> <parameter name> <parameter value>]
1117*
1118* Return value is a Map that contains those parameters using the following structure:
1119*
1120* <job name>:
1121* <parameter name>: <parameter value>
1122*
1123**/
1124Map getJobsParamsFromCommitMsg() {
1125 List keywords = getCIKeywordsFromCommitMsg()
1126
1127 List jobsParamsList = []
1128 keywords.findAll{ it.key == 'job-params' }.collect(jobsParamsList) {
1129 def (name, params) = (it['value'].split(/\s+/, 2) + [null, ])[0..1]
1130 def (key, value) = params.split(/\s+/, 2)
1131 ['name': name, 'key': key, 'value': value]
1132 }
1133
1134 Map jobsParams = jobsParamsList.inject([:]) { result, it ->
1135 if (!result.containsKey(it.name)) {
1136 result[it.name] = [:]
1137 }
1138 result[it.name][it.key] = it.value
1139 result
1140 }
1141
1142 return jobsParams
1143}
1144
1145
1146/**
1147* getJobParamsFromCommitMsg returns key:value Map of parameters set for a job in commit message.
1148* It uses getJobsParamsFromCommitMsg to get all parameters from commit message and then
1149* uses only those parametes that were set to all jobs (with <job name> == '*') or to
1150* a particular job. Parameters set to a particular job have higher precedence.
1151*
1152* Return value is a Map that contains those parameters:
1153*
1154* <parameter name>: <parameter value>
1155*
1156**/
1157Map getJobParamsFromCommitMsg(String jobName) {
1158 jobsParams = getJobsParamsFromCommitMsg()
1159 jobParams = jobsParams.getOrDefault('*', [:])
1160 if (jobName) {
1161 jobParams.putAll(jobsParams.getOrDefault(jobName, [:]))
1162 }
1163 return jobParams
1164}
azvyagintsevc17d14b2022-06-06 19:06:33 +03001165
1166/** Getting test scheme from text, which should be
1167Imput example:
1168text="""
1169 DATA
1170
1171 kaas_bm_test_schemas:
1172 KAAS_RELEASES_REFSPEC: ''
1173 KEY: VAL
1174
1175 DATA
1176 """
1177
1178 Call: parseTextForTestSchemas(['text' : text,'keyLine' : 'kaas_bm_test_schemas'])
1179
1180 Return:
1181 ['KAAS_RELEASES_REFSPEC': '', 'KEY' : 'VAL']
1182 **/
1183def parseTextForTestSchemas(Map opts) {
azvyagintsevd96aac22022-06-10 14:23:26 +03001184 String text = opts.getOrDefault('text', '')
azvyagintsevc17d14b2022-06-06 19:06:33 +03001185 String keyLine = opts.getOrDefault('keyLine', '')
1186 Map testScheme = [:]
1187 if (!text || !keyLine) {
azvyagintsevd96aac22022-06-10 14:23:26 +03001188 return testScheme
azvyagintsevc17d14b2022-06-06 19:06:33 +03001189 }
1190 if (text =~ /\n$keyLine\n.*/) {
1191 def common = new com.mirantis.mk.Common()
1192 try {
1193 String regExp = '\\n' + keyLine + '\\n'
1194 // regexep block must be followed by empty line
1195 testScheme = readYaml text: "${text.split(regExp)[1].split('\n\n')[0]}"
1196 common.infoMsg("parseTextForTestSchemas result:\n" + testScheme)
1197 common.mergeEnv(env, toJson(testScheme))
1198 }
1199 catch (Exception e) {
1200 common.errorMsg("There is an error occured during parseTextForTestSchemas execution:\n${e}")
1201 throw e
1202 }
1203 }
azvyagintsevd96aac22022-06-10 14:23:26 +03001204 return testScheme
Dmitriy Kasyanov5f910e62022-02-11 14:57:05 +03001205}
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001206
1207
1208/**
Sergey Zhemerdeevde949bf2022-09-14 15:44:33 +03001209* getEquinixFacilityWithCapacity returns list of Equinix facilities using specified
Sergey Zhemerdeev46080fa2022-10-06 12:34:12 +03001210* instance type (nodeType), desired count of facilities (facilityCount) and
1211* instances (nodeCount) in a facility using specified matal version.
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001212* Function downloads metal CLI from the
Sergey Zhemerdeevde949bf2022-09-14 15:44:33 +03001213* https://artifactory.mcp.mirantis.net:443/artifactory/binary-dev-kaas-local/core/bin/mirror/metal-${version}-linux
1214* Empty list is returned in case of no facilities with specified capacity was found or any other errors.
Sergey Zhemerdeev15aa8602022-10-13 11:10:02 +03001215* Non-empty list is shuffled.
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001216*
Sergey Zhemerdeev46080fa2022-10-06 12:34:12 +03001217* @param: facilityCount (int) Desired count of facilities
1218* @param: nodeCount (int) Desired count of instances
1219* @param: nodeType (string) Instance type
1220* @param: version (string) Metal version to use
Sergey Zhemerdeevde949bf2022-09-14 15:44:33 +03001221* @return ([]string) List of selected facilities
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001222*
1223**/
Sergey Zhemerdeev46080fa2022-10-06 12:34:12 +03001224def getEquinixFacilityWithCapacity(facilityCount = 1, nodeCount = 50, nodeType = 'c3.small.x86', version = '0.9.0') {
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001225 def common = new com.mirantis.mk.Common()
1226 def metalUrl = "https://artifactory.mcp.mirantis.net:443/artifactory/binary-dev-kaas-local/core/bin/mirror/metal-${version}-linux"
Sergey Zhemerdeevb68bf612022-09-12 13:12:32 +03001227 def metal = './metal --config metal.yaml'
Sergey Zhemerdeevb68bf612022-09-12 13:12:32 +03001228 def facility = []
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001229 def out = ''
Sergey Zhemerdeevbcccb912022-08-25 14:26:52 +03001230 def retries = 3 // number of retries
Sergey Zhemerdeev495ba582022-08-16 16:31:43 +03001231 def i = 0
1232 def delay = 60 // 1 minute sleep
Sergey Zhemerdeev46080fa2022-10-06 12:34:12 +03001233 def excludeFacility = [] // list of facilities to exclude from selection
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001234 try {
Sergey Zhemerdeevb3575342022-10-04 11:02:19 +03001235 if (excludeFacility.size() > 0) {
1236 common.infoMsg("Excluded facilities: ${excludeFacility}")
1237 }
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001238 sh "curl -o metal -# ${metalUrl} && chmod +x metal"
1239 withCredentials([string(credentialsId: env.KAAS_EQUINIX_API_TOKEN, variable: 'KAAS_EQUINIX_API_TOKEN')]) {
1240 sh 'echo "project-id: ${KAAS_EQUINIX_PROJECT_ID}\ntoken: ${KAAS_EQUINIX_API_TOKEN}" >metal.yaml'
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001241 }
Sergey Zhemerdeev46080fa2022-10-06 12:34:12 +03001242 while (facility.size() < facilityCount && i < retries) {
1243 common.infoMsg("Selecting ${facilityCount} available Equinix facilities with free ${nodeCount} ${nodeType} hosts, try ${i+1}/${retries} ...")
Sergey Zhemerdeev495ba582022-08-16 16:31:43 +03001244 if (i > 0 ) { // skip sleep on first step
1245 sleep(delay)
1246 }
Sergey Zhemerdeevb68bf612022-09-12 13:12:32 +03001247 out = sh(script: "${metal} capacity get -f -P ${nodeType}|awk '/${nodeType}/ {print \$2}'|paste -s -d,|xargs ${metal} capacity check -P ${nodeType} -q ${nodeCount} -f|grep true|awk '{print \$2}'|paste -s -d,", returnStdout: true).trim()
1248 facility = out.tokenize(',')
Sergey Zhemerdeevb3575342022-10-04 11:02:19 +03001249 facility -= excludeFacility
Sergey Zhemerdeev46080fa2022-10-06 12:34:12 +03001250 if (facility.size() < facilityCount) {
1251 nodeCount -= 10
1252 // We need different metros for the [equinixmetalv2-child-diff-metro] case, facility[][0, 1] contains a metro name
1253 } else if (facility.size() == 2 && facility[0][0, 1] == facility[1][0, 1]) {
Sergey Zhemerdeevbcccb912022-08-25 14:26:52 +03001254 nodeCount -= 10
1255 }
Sergey Zhemerdeev495ba582022-08-16 16:31:43 +03001256 i++
1257 }
Sergey Zhemerdeevb68bf612022-09-12 13:12:32 +03001258 if (facility.size() > 0) {
1259 f = facility.size() > 1 ? "${facility[0]},${facility[1]}" : "${facility[0]}"
1260 sh "${metal} capacity check -P ${nodeType} -f ${f} -q ${nodeCount}"
Sergey Zhemerdeevbcccb912022-08-25 14:26:52 +03001261 }
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001262 } catch (Exception e) {
1263 common.errorMsg "Exception: '${e}'"
1264 return []
Sergey Zhemerdeev495ba582022-08-16 16:31:43 +03001265 } finally {
1266 sh 'rm metal.yaml'
1267 }
Sergey Zhemerdeevb68bf612022-09-12 13:12:32 +03001268 if (facility.size() > 0) {
Sergey Zhemerdeev15aa8602022-10-13 11:10:02 +03001269 Collections.shuffle(facility)
Sergey Zhemerdeevb68bf612022-09-12 13:12:32 +03001270 common.infoMsg("Selected facilities: ${facility}")
Sergey Zhemerdeev495ba582022-08-16 16:31:43 +03001271 } else {
Sergey Zhemerdeevde949bf2022-09-14 15:44:33 +03001272 common.warningMsg('No any facilities have been selected !!! :(')
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001273 }
Sergey Zhemerdeevde949bf2022-09-14 15:44:33 +03001274 return facility
Sergey Zhemerdeev31569082022-08-10 10:13:19 +03001275}
Sergey Zhemerdeev2a273342022-08-18 12:06:11 +03001276
1277
1278/**
1279 * genCommandLine prepares command line for artifactory-replication
1280 * command using legacy environment variables
1281 *
1282 * @return: (string) Prepared command line
1283 */
1284def genCommandLine() {
1285 def envToParam = [
1286 'DESTINATION_USER': '-dst-user',
1287 'ARTIFACT_FILTER': '-artifact-filter',
1288 'ARTIFACT_FILTER_PROD': '-artifact-filter-prod',
1289 'ARTIFACT_TYPE': '-artifact-type',
1290 'BINARY_CLEAN': '-bin-cleanup',
1291 'BINARY_CLEAN_KEEP_DAYS': '-bin-clean-keep-days',
1292 'BINARY_CLEAN_PREFIX': '-bin-clean-prefix',
1293 'BUILD_URL': '-slack-build-url',
1294 'CHECK_REPOS': '-check-repos',
1295 'DESTINATION_REGISTRY': '-dst-repo',
1296 'DESTINATION_REGISTRY_TYPE': '-dst-repo-type',
1297 'DOCKER_CLEAN': '-cleanup',
1298 'DOCKER_REPO_PREFIX': '-docker-repo-prefix',
1299 'DOCKER_TAG': '-docker-tag',
1300 'FORCE': '-force',
1301 'HELM_CDN_DOMAIN': '-helm-cdn-domain',
1302 'SLACK_CHANNEL': '-slack-channel',
1303 'SLACK_USER': '-slack-user',
1304 'SOURCE_REGISTRY': '-src-repo',
1305 'SOURCE_REGISTRY_TYPE': '-src-repo-type',
1306 'SYNC_PATTERN': '-sync-pattern'
1307 ]
1308 def cmdParams = ''
Sergey Zhemerdeev88d1c3d2022-08-31 16:37:48 +03001309 def isCheckClean = false
Sergey Zhemerdeev2a273342022-08-18 12:06:11 +03001310 for (e in envToParam) {
1311 if (env[e.key] == null) {
1312 continue
1313 }
1314 if (e.key == 'CHECK_REPOS' || e.key == 'DOCKER_CLEAN') {
Sergey Zhemerdeev88d1c3d2022-08-31 16:37:48 +03001315 // Avoid CHECK_REPOS=true and DOCKER_CLEAN=true
1316 if (env[e.key].toBoolean() && !isCheckClean) {
Sergey Zhemerdeev2a273342022-08-18 12:06:11 +03001317 cmdParams += e.value + ' '
Sergey Zhemerdeev88d1c3d2022-08-31 16:37:48 +03001318 isCheckClean = true
Sergey Zhemerdeev2a273342022-08-18 12:06:11 +03001319 }
1320 } else if (e.key == 'FORCE') {
1321 if (env[e.key].toBoolean()) {
1322 cmdParams += e.value + ' '
1323 }
1324 } else {
Sergey Zhemerdeeve2926cd2022-08-29 15:28:47 +03001325 cmdParams += "${e.value} '${env[e.key]}' "
Sergey Zhemerdeev2a273342022-08-18 12:06:11 +03001326 }
1327 }
Sergey Zhemerdeev88d1c3d2022-08-31 16:37:48 +03001328 // No any check or clean was specified - take a default action
1329 if (!isCheckClean) {
1330 cmdParams += '-replicate'
1331 }
Sergey Zhemerdeev2a273342022-08-18 12:06:11 +03001332 return cmdParams
1333}
Sergey Kolekonov0e60a942022-09-05 13:02:22 +04001334
1335/**
1336 * custom scheduling algorithm
1337 * it ensures that builds of the same job are distributed as much as possible between different nodes
1338 * @param label (string) desired node label
1339 * @return: (string) node name
1340 */
1341def schedule (label='docker') {
1342 def common = new com.mirantis.mk.Common()
1343 def freeNodes = []
1344 def nodesMap = [:]
1345
1346 // filter nodes with the specified label and at least one free executor
1347 timeout(time: 30, unit: 'MINUTES') {
1348 while (!freeNodes) {
1349 freeNodes = jenkins.model.Jenkins.instance.computers.findAll { node ->
1350 label in node.getAssignedLabels().collect { it.name } &&
Sergey Kolekonovd5887172022-11-10 12:13:22 +06001351 node.isPartiallyIdle() &&
1352 node.isOnline()
Sergey Kolekonov0e60a942022-09-05 13:02:22 +04001353 }
1354 if (!freeNodes) {
1355 echo 'No nodes available for scheduling, retrying...'
1356 sleep 30
1357 }
1358 }
1359 }
1360
1361 // generate a map of nodes matching other criteria
1362 for (node in freeNodes) {
1363 // sameJobExecutors is the number of executors running the same job as the calling one
1364 sameJobExecutors = node.getExecutors() // get all executors
1365 .collect { executor -> executor.getCurrentExecutable() } // get running "threads"
1366 .collect { thread -> thread?.displayName } // filter job names from threads
1367 .minus(null) // null = empty executors, remove them from the list
1368 .findAll { it.contains(env.JOB_NAME) } // filter the same jobs as the calling one
1369 .size()
1370
1371 // calculate busy executors, we don't want to count "sameJobExecutors" twice
1372 totalBusyExecutors = node.countBusy() - sameJobExecutors
1373 // generate the final map which contains nodes matching criteria with their load score
1374 // builds of the same jobs have x10 score, all others x1
1375 nodesMap += ["${node.getName()}" : sameJobExecutors * 10 + totalBusyExecutors]
1376 }
1377
1378 // return the least loaded node
1379 return common.SortMapByValueAsc(nodesMap).collect { it.key }[0]
1380}