Fix default salt master port for cicd pipeline
Change-Id: I551cddc3f4e7128c6ad5dfe2f7fa2c4ef6d24d4b
diff --git a/cicd-lab-pipeline.groovy b/cicd-lab-pipeline.groovy
index 11fc586..e56fdad 100644
--- a/cicd-lab-pipeline.groovy
+++ b/cicd-lab-pipeline.groovy
@@ -117,7 +117,7 @@
try {
saltMasterPort = SALT_MASTER_PORT
} catch (MissingPropertyException e) {
- saltMasterPort = 8000
+ saltMasterPort = 6969
}
saltMasterHost = openstack.getHeatStackOutputParam(openstackCloud, HEAT_STACK_NAME, 'salt_master_ip', openstackEnv)
saltMasterUrl = "http://${saltMasterHost}:${saltMasterPort}"