Adding parameter to runConformanceTests method
- Propageted parameter target ('ctl01*') to runConformanceTests method
- Depends on https://gerrit.mcp.mirantis.net/#/c/10795/
Change-Id: Ib64759003b0deb0dd75ab103c7bfd1e25b14c17f
diff --git a/lab-pipeline.groovy b/lab-pipeline.groovy
index c605421..06dc48e 100644
--- a/lab-pipeline.groovy
+++ b/lab-pipeline.groovy
@@ -295,7 +295,7 @@
def output_file = image.replaceAll('/', '-') + '.output'
// run image
- test.runConformanceTests(saltMaster, TEST_K8S_API_SERVER, image)
+ test.runConformanceTests(saltMaster, 'ctl01*', TEST_K8S_API_SERVER, image)
// collect output
sh "mkdir -p ${artifacts_dir}"
@@ -308,13 +308,13 @@
}
stage('Run k8s conformance e2e tests') {
- //test.runConformanceTests(saltMaster, TEST_K8S_API_SERVER, TEST_K8S_CONFORMANCE_IMAGE)
+ //test.runConformanceTests(saltMaster, 'ctl01*', TEST_K8S_API_SERVER, TEST_K8S_CONFORMANCE_IMAGE)
def image = TEST_K8S_CONFORMANCE_IMAGE
def output_file = image.replaceAll('/', '-') + '.output'
// run image
- test.runConformanceTests(saltMaster, TEST_K8S_API_SERVER, image)
+ test.runConformanceTests(saltMaster, 'ctl01*', TEST_K8S_API_SERVER, image)
// collect output
sh "mkdir -p ${artifacts_dir}"