Adding on master user and pass vars for IPMI compute nodes

Change-Id: If9382802aee6b1525d20d6e7ff265d73a64b1885
diff --git a/Jenkinsfile b/Jenkinsfile
index f725f33..dc1d1df 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -66,12 +66,12 @@
                 stage 'Deploy'
                 sh 'vagrant ssh -c "cd /cord/build; ./gradlew -PtargetReg=${headNodeIP}:5000 -PdeployConfig=config/pod-configs/${podConfigFileName} deploy" corddev'
 
-                stage 'Power cycle compute nodes'
+		stage 'Power cycle compute nodes'
                 parallel(
                     compute_1: {
-                        sh 'ipmitool -U admin -P admin -H ${computeNode1IPMI} power cycle'
+                        sh 'ipmitool -U "${computeNode1IPMIUser}" -P "${computeNode1IPMIPass}" -H ${computeNode1IPMIIP} power cycle'
                     }, compute_2: {
-                        sh 'ipmitool -U admin -P admin -H ${computeNode2IPMI} power cycle'
+                        sh 'ipmitool -U "${computeNode2IPMIUser}" -P "${computeNode2IPMIPass}" -H ${computeNode2IPMIIP} power cycle'
                     }, failFast : true
                 )