main.yml 791 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: Install pyparted (RedHat/Fedora)
  3. yum: name=pyparted,python-httplib2 state=installed
  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: url={{ kubernetes_url }}/api/v1beta3/persistentvolumes
  15. method=POST
  16. body='{{ lookup("template", "../templates/nfs.json.j2") }}'
  17. body_format=json
  18. status_code=201
  19. HEADER_Authorization="Bearer {{ kubernetes_token }}"
  20. with_items: partition_pool