create_pv.yaml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. ---
  2. #example run:
  3. # ansible-playbook -e "cli_volume_size=1" \
  4. # -e "cli_device_name=/dev/xvdf" \
  5. # -e "cli_hosttype=master" \
  6. # -e "cli_environment=ops" \
  7. # create_pv.yaml
  8. # FIXME: we need to change "environment" to "clusterid" as that's what it really is now.
  9. #
  10. - name: Create a volume and attach it to master
  11. hosts: localhost
  12. connection: local
  13. become: no
  14. gather_facts: no
  15. vars:
  16. cli_volume_type: gp2
  17. cli_volume_iops: ''
  18. oo_name: "{{ groups['tag_host-type_' ~ cli_hosttype] |
  19. intersect(groups['tag_environment_' ~ cli_environment]) |
  20. first }}"
  21. pre_tasks:
  22. - fail:
  23. msg: "This playbook requires {{item}} to be set."
  24. when: "{{ item }} is not defined or {{ item }} == ''"
  25. with_items:
  26. - cli_volume_size
  27. - cli_device_name
  28. - cli_hosttype
  29. - cli_environment
  30. - name: set oo_name fact
  31. set_fact:
  32. oo_name: "{{ oo_name }}"
  33. - name: Select a single master to run this on
  34. add_host:
  35. hostname: "{{ oo_name }}"
  36. ansible_ssh_host: "{{ hostvars[oo_name].ec2_public_dns_name }}"
  37. groups: oo_master
  38. - name: Create a volume and attach it
  39. ec2_vol:
  40. state: present
  41. instance: "{{ hostvars[oo_name]['ec2_id'] }}"
  42. region: "{{ hostvars[oo_name]['ec2_region'] }}"
  43. volume_size: "{{ cli_volume_size }}"
  44. volume_type: "{{ cli_volume_type }}"
  45. device_name: "{{ cli_device_name }}"
  46. iops: "{{ cli_volume_iops }}"
  47. register: vol
  48. - debug: var=vol
  49. - name: tag the vol with a name
  50. ec2_tag: region={{ hostvars[oo_name]['ec2_region'] }} resource={{vol.volume_id}}
  51. args:
  52. tags:
  53. Name: "pv-{{ hostvars[oo_name]['ec2_tag_Name'] }}"
  54. env: "{{cli_environment}}"
  55. register: voltags
  56. - debug: var=voltags
  57. - name: Configure the drive
  58. gather_facts: no
  59. hosts: oo_master
  60. user: root
  61. connection: ssh
  62. vars:
  63. pv_tmpdir: /tmp/persistentvolumes
  64. post_tasks:
  65. - name: Setting facts for template
  66. set_fact:
  67. pv_name: "pv-{{cli_volume_size}}-{{ hostvars[hostvars.localhost.oo_name]['ec2_tag_Name'] }}-{{hostvars.localhost.vol.volume_id }}"
  68. vol_az: "{{ hostvars[hostvars.localhost.oo_name]['ec2_placement'] }}"
  69. vol_id: "{{ hostvars.localhost.vol.volume_id }}"
  70. vol_size: "{{ cli_volume_size }}"
  71. pv_mntdir: "{{ pv_tmpdir }}/mnt-{{ 1000 | random }}"
  72. - set_fact:
  73. pv_template: "{{ pv_tmpdir }}/{{ pv_name }}.yaml"
  74. - name: "Mkdir {{ pv_tmpdir }}"
  75. file:
  76. state: directory
  77. path: "{{ pv_tmpdir }}"
  78. mode: '0750'
  79. - name: "Mkdir {{ pv_mntdir }}"
  80. file:
  81. state: directory
  82. path: "{{ pv_mntdir }}"
  83. mode: '0750'
  84. - name: Create pv file from template
  85. template:
  86. src: ./pv-template.j2
  87. dest: "{{ pv_template }}"
  88. owner: root
  89. mode: '0640'
  90. - name: mkfs
  91. filesystem:
  92. dev: "{{ cli_device_name }}"
  93. fstype: ext4
  94. - name: Mount the dev
  95. mount:
  96. name: "{{ pv_mntdir }}"
  97. src: "{{ cli_device_name }}"
  98. fstype: ext4
  99. state: mounted
  100. - name: chgrp g+rwXs
  101. file:
  102. path: "{{ pv_mntdir }}"
  103. mode: 'g+rwXs'
  104. recurse: yes
  105. seuser: system_u
  106. serole: object_r
  107. setype: svirt_sandbox_file_t
  108. selevel: s0
  109. - name: umount
  110. mount:
  111. name: "{{ pv_mntdir }}"
  112. src: "{{ cli_device_name }}"
  113. state: unmounted
  114. fstype: ext4
  115. - name: remove from fstab
  116. mount:
  117. name: "{{ pv_mntdir }}"
  118. src: "{{ cli_device_name }}"
  119. state: absent
  120. fstype: ext4
  121. - name: detach drive
  122. delegate_to: localhost
  123. ec2_vol:
  124. region: "{{ hostvars[hostvars.localhost.oo_name].ec2_region }}"
  125. id: "{{ hostvars.localhost.vol.volume_id }}"
  126. instance: None
  127. - name: "Remove {{ pv_mntdir }}"
  128. file:
  129. state: absent
  130. path: "{{ pv_mntdir }}"
  131. # We have to use the shell module because we can't set env vars with the command module.
  132. - name: "Place PV into oc"
  133. shell: "KUBECONFIG=/etc/openshift/master/admin.kubeconfig oc create -f {{ pv_template | quote }}"
  134. register: oc_output
  135. - debug: var=oc_output
  136. - fail:
  137. msg: "Failed to add {{ pv_template }} to master."
  138. when: oc_output.rc != 0