main.yml 951 B

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