main.yml 1.3 KB

123456789101112131415161718192021222324
  1. ---
  2. - name: Create lvm volumes
  3. lvol: vg={{osnl_volume_group}} lv={{ item }} size={{osnl_volume_size}}G
  4. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  5. - name: create filesystem
  6. filesystem: fstype=xfs dev=/dev/{{osnl_volume_group}}/{{ item }}
  7. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  8. - name: mount volumes
  9. mount: name={{osnl_mount_dir}}/{{ item }} src=/dev/{{osnl_volume_group}}/{{ item }} state=mounted fstype=xfs passno=0
  10. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  11. - name: Make mounts owned by nfsnobody
  12. file: path={{osnl_mount_dir}}/{{ item }} owner=nfsnobody group=nfsnobody mode=0700
  13. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  14. - include: nfs.yml
  15. - name: Create volume json file
  16. template: src=../templates/nfs.json.j2 dest=/root/persistent-volume.{{ item }}.json
  17. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  18. # TODO - Get the json files to an openshift-master, and load them.