Advertisement
greatbn

Untitled

Jun 29th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ---
  2. version: '2.0'
  3. name: backup_workflows
  4. workflows:
  5. snapshot:
  6. output:
  7. snapshots_id: <% $.volumes_list %>
  8. tasks:
  9. list_volumes:
  10. action: cinder.volumes_list
  11. publish:
  12. volumes_list: <% task(list_volumes).result.where($.metadata.get("snapshot") = True).select($.id) %>
  13. on-success:
  14. - snapshot_volume
  15. snapshot_volume:
  16. with-items: volume_id in <% $.volumes_list %>
  17. action: cinder.volume_snapshots_create volume_id=<% $.volume_id %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement