Guest User

Untitled

a guest
Feb 9th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. ---
  2. version: '2.0'
  3.  
  4. name: wb
  5.  
  6. workflows:
  7. wf1:
  8. input:
  9. - var: 4
  10. tasks:
  11. check_raga_for_backup_status:
  12. action: std.http
  13. input:
  14. url: '<% $.workflowapi_url %>/v1/workflow/raga/backups/<% $.instance_ip %>/<% $.backup_id %>'
  15. method: GET
  16. retry:
  17. count: 15
  18. delay: 1
  19. break-on: <% $.check_raga_for_backup_status.content.status = 'backup_failed' %>
  20. continue-on: <% $.check_raga_for_backup_status.content.status = 'backup_success' %>
  21. publish:
  22. cinder_snapshot_id: <% $.check_raga_for_backup_status.content.cinder_snapshot_id %>
Advertisement
Add Comment
Please, Sign In to add comment