create_pv.yaml 4.0 KB

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