main.yml 1.5 KB

1234567891011121314151617181920212223242526272829
  1. ---
  2. # TODO -- this may actually work on atomic hosts
  3. - fail:
  4. msg: "openshift_storage_nfs_lvm is not compatible with atomic host"
  5. when: openshift.common.is_atomic | bool
  6. - name: Create lvm volumes
  7. lvol: vg={{osnl_volume_group}} lv={{ item }} size={{osnl_volume_size}}G
  8. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  9. - name: create filesystem
  10. filesystem: fstype=xfs dev=/dev/{{osnl_volume_group}}/{{ item }}
  11. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  12. - name: mount volumes
  13. mount: name={{osnl_mount_dir}}/{{ item }} src=/dev/{{osnl_volume_group}}/{{ item }} state=mounted fstype=xfs passno=0
  14. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  15. - name: Make mounts owned by nfsnobody
  16. file: path={{osnl_mount_dir}}/{{ item }} owner=nfsnobody group=nfsnobody mode=0700
  17. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  18. - include_tasks: nfs.yml
  19. - name: Create volume json file
  20. template: src=../templates/nfs.json.j2 dest=/root/persistent-volume.{{ item }}.json
  21. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  22. # TODO - Get the json files to a master, and load them.