Add condition for vsphere regional child
PRODX-12749
Change-Id: Iaefcce3ba5535fd19353ed711d54671587a35be0
diff --git a/src/com/mirantis/mk/KaasUtils.groovy b/src/com/mirantis/mk/KaasUtils.groovy
index 9ebdd9d..e356228 100644
--- a/src/com/mirantis/mk/KaasUtils.groovy
+++ b/src/com/mirantis/mk/KaasUtils.groovy
@@ -674,7 +674,7 @@
// Checking gerrit triggers and manage lock label quantity and network types in case of Offline deployment
// Vsphere labels only
netMap.each { clusterType, netConfig ->
- if (triggers.proxyConfig["${clusterType}Offline"] == true) {
+ if (triggers.proxyConfig["${clusterType}Offline"] == true || (clusterType == 'regional-child' && triggers.proxyConfig['childOffline'] == true)) {
netMap[clusterType]['netName'] = 'offline'
lockLabels['vsphere_offline_networking_core_ci']++
} else {