main.yml 908 B

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