main.yml 1019 B

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