Add additional step before deploy contrail.
* Added step with deploy keepalived and rabbitMQ
before deploy opencontrail for k8s env templates.
Change-Id: I16a52d1e3ac39ab892aa3c3d2031a73159f06992
diff --git a/lab-pipeline.groovy b/lab-pipeline.groovy
index 0313d4d..84f5dcf 100644
--- a/lab-pipeline.groovy
+++ b/lab-pipeline.groovy
@@ -178,6 +178,11 @@
// install k8s
if (common.checkContains('STACK_INSTALL', 'k8s')) {
+ // install infra libs for k8s
+ stage('Install Kubernetes infra') {
+ orchestrate.installKubernetesInfra(saltMaster)
+ }
+
// If k8s install with contrail network manager then contrail need to be install first
if (common.checkContains('STACK_INSTALL', 'contrail')) {
stage('Install Contrail for Kubernetes') {
@@ -187,10 +192,6 @@
}
}
- stage('Install Kubernetes infra') {
- orchestrate.installKubernetesInfra(saltMaster)
- }
-
stage('Install Kubernetes control') {
orchestrate.installKubernetesControl(saltMaster)
}