main.yml 819 B

1234567891011121314151617181920212223242526
  1. ---
  2. - name: Install pyparted (RedHat/Fedora)
  3. action: "{{ ansible_pkg_mgr }} name=pyparted,python-httplib2 state=present"
  4. - name: partition the drives
  5. partitionpool: disks={{ disks }} force={{ force }} sizes={{ sizes }}
  6. - name: create filesystem
  7. filesystem: fstype=ext4 dev=/dev/{{ item.name }}
  8. with_items: partition_pool
  9. - name: mount
  10. mount: name={{mount_dir}}/{{ item.name }} src=/dev/{{ item.name }} state=mounted fstype=ext4 passno=2
  11. with_items: partition_pool
  12. - include: nfs.yml
  13. - name: export physical volumes
  14. uri:
  15. url: "{{ kubernetes_url }}/api/{{ kube_api_version }}/persistentvolumes"
  16. method: POST
  17. body: "{{ lookup('template', kube_req_template) }}"
  18. body_format: json
  19. status_code: 201
  20. HEADER_Authorization: "Bearer {{ kubernetes_token }}"
  21. with_items: partition_pool