Merge "fix compute setup with ceph role"
diff --git a/openstack-compute-install.groovy b/openstack-compute-install.groovy
index 7602dcf..2b37fba 100644
--- a/openstack-compute-install.groovy
+++ b/openstack-compute-install.groovy
@@ -80,7 +80,9 @@
stage("Highstate compute") {
// Execute highstate without state opencontrail.client.
- salt.runSaltProcessStep(pepperEnv, targetLiveAll, 'state.highstate', ['exclude=opencontrail.client'], null, true)
+ common.retry(2){
+ salt.runSaltProcessStep(pepperEnv, targetLiveAll, 'state.highstate', ['exclude=opencontrail.client'], null, true)
+ }
// Apply nova state to remove libvirt default bridge virbr0.
salt.enforceState(pepperEnv, targetLiveAll, 'nova', true)