Skip to content
Snippets Groups Projects
Commit c4bb83db authored by Gioacchino Vino's avatar Gioacchino Vino
Browse files

Increase deployment waiting time

parent 2f99e8bc
No related branches found
No related tags found
1 merge request!30Increase deployment waiting time
......@@ -13,7 +13,15 @@ pipeline {
sh '''#!/bin/bash
eval `oidc-agent-service use`
oidc-add infn-cloud-ops
if orchent depls | grep -q ERROR; then exit 1; else exit 0; fi
orchent depls > depls.output
if cat depls.output | grep -q ERROR
then
cat depls.output
exit 1
else
echo "orchent ok"
exit 0
fi
'''
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment