grow_docker_vg.yml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. ---
  2. # This playbook grows the docker VG on a node by:
  3. # * add a new volume
  4. # * add volume to the existing VG.
  5. # * pv move to the new volume.
  6. # * remove old volume
  7. # * detach volume
  8. # * mark old volume in AWS with "REMOVE ME" tag
  9. # * grow docker LVM to 90% of the VG
  10. #
  11. # To run:
  12. # 1. Source your AWS credentials (make sure it's the corresponding AWS account) into your environment
  13. # export AWS_ACCESS_KEY_ID='XXXXX'
  14. # export AWS_SECRET_ACCESS_KEY='XXXXXX'
  15. #
  16. # 2. run the playbook:
  17. # ansible-playbook -e 'cli_tag_name=<tag-name>' grow_docker_vg.yml
  18. #
  19. # Example:
  20. # ansible-playbook -e 'cli_tag_name=ops-compute-12345' grow_docker_vg.yml
  21. #
  22. # Notes:
  23. # * By default this will do a 200GB GP2 volume. The can be overidden with the "-e 'cli_volume_size=100'" variable
  24. # * This does a GP2 by default. Support for Provisioned IOPS has not been added
  25. # * This will assign the new volume to /dev/xvdc. This is not variablized, yet.
  26. # * This can be done with NO downtime on the host
  27. # * This playbook assumes that there is a Logical Volume that is installed and called "docker-pool". This is
  28. # the LV that gets created via the "docker-storage-setup" command
  29. #
  30. - name: Grow the docker volume group
  31. hosts: "tag_Name_{{ cli_tag_name }}"
  32. user: root
  33. connection: ssh
  34. gather_facts: no
  35. vars:
  36. cli_volume_type: gp2
  37. cli_volume_size: 200
  38. #cli_volume_iops: "{{ 30 * cli_volume_size }}"
  39. pre_tasks:
  40. - fail:
  41. msg: "This playbook requires {{item}} to be set."
  42. when: "{{ item }} is not defined or {{ item }} == ''"
  43. with_items:
  44. - cli_tag_name
  45. - cli_volume_size
  46. - debug:
  47. var: hosts
  48. - name: start docker
  49. service:
  50. name: docker
  51. state: started
  52. - name: Determine if Storage Driver (docker info) is devicemapper
  53. shell: docker info | grep 'Storage Driver:.*devicemapper'
  54. register: device_mapper_check
  55. ignore_errors: yes
  56. - debug:
  57. var: device_mapper_check
  58. - name: fail if we don't detect devicemapper
  59. fail:
  60. msg: The "Storage Driver" in "docker info" is not set to "devicemapper"! Please investigate manually.
  61. when: device_mapper_check.rc == 1
  62. # docker-storage-setup creates a docker-pool as the lvm. I am using docker-pool lvm to test
  63. # and find the volume group.
  64. - name: Attempt to find the Volume Group that docker is using
  65. shell: lvs | grep docker-pool | awk '{print $2}'
  66. register: docker_vg_name
  67. ignore_errors: yes
  68. - debug:
  69. var: docker_vg_name
  70. - name: fail if we don't find a docker volume group
  71. fail:
  72. msg: Unable to find docker volume group. Please investigate manually.
  73. when: docker_vg_name.stdout_lines|length != 1
  74. # docker-storage-setup creates a docker-pool as the lvm. I am using docker-pool lvm to test
  75. # and find the physical volume.
  76. - name: Attempt to find the Phyisical Volume that docker is using
  77. shell: "pvs | grep {{ docker_vg_name.stdout }} | awk '{print $1}'"
  78. register: docker_pv_name
  79. ignore_errors: yes
  80. - debug:
  81. var: docker_pv_name
  82. - name: fail if we don't find a docker physical volume
  83. fail:
  84. msg: Unable to find docker physical volume. Please investigate manually.
  85. when: docker_pv_name.stdout_lines|length != 1
  86. - name: get list of volumes from AWS
  87. delegate_to: localhost
  88. ec2_vol:
  89. state: list
  90. instance: "{{ ec2_id }}"
  91. region: "{{ ec2_region }}"
  92. register: attached_volumes
  93. - debug: var=attached_volumes
  94. - name: get volume id of current docker volume
  95. set_fact:
  96. old_docker_volume_id: "{{ attached_volumes.volumes | translate_volume_name(docker_pv_name.stdout) }}"
  97. - debug: var=old_docker_volume_id
  98. - name: check to see if /dev/xvdc exists
  99. command: test -e /dev/xvdc
  100. register: xvdc_check
  101. ignore_errors: yes
  102. - debug: var=xvdc_check
  103. - name: fail if /dev/xvdc already exists
  104. fail:
  105. msg: /dev/xvdc already exists. Please investigate
  106. when: xvdc_check.rc == 0
  107. - name: Create a volume and attach it
  108. delegate_to: localhost
  109. ec2_vol:
  110. state: present
  111. instance: "{{ ec2_id }}"
  112. region: "{{ ec2_region }}"
  113. volume_size: "{{ cli_volume_size | default(30, True)}}"
  114. volume_type: "{{ cli_volume_type }}"
  115. device_name: /dev/xvdc
  116. register: create_volume
  117. - debug: var=create_volume
  118. - name: Fail when problems creating volumes and attaching
  119. fail:
  120. msg: "Failed to create or attach volume msg: {{ create_volume.msg }}"
  121. when: create_volume.msg is defined
  122. - name: tag the vol with a name
  123. delegate_to: localhost
  124. ec2_tag: region={{ ec2_region }} resource={{ create_volume.volume_id }}
  125. args:
  126. tags:
  127. Name: "{{ ec2_tag_Name }}"
  128. clusterid: "{{ ec2_tag_clusterid }}"
  129. register: voltags
  130. - name: check for attached drive
  131. command: test -b /dev/xvdc
  132. register: attachment_check
  133. until: attachment_check.rc == 0
  134. retries: 30
  135. delay: 2
  136. - name: partition the new drive and make it lvm
  137. command: parted /dev/xvdc --script -- mklabel msdos mkpart primary 0% 100% set 1 lvm
  138. - name: pvcreate /dev/xvdc
  139. command: pvcreate /dev/xvdc1
  140. - name: Extend the docker volume group
  141. command: vgextend "{{ docker_vg_name.stdout }}" /dev/xvdc1
  142. - name: pvmove onto new volume
  143. command: "pvmove {{ docker_pv_name.stdout }} /dev/xvdc1"
  144. async: 43200
  145. poll: 10
  146. - name: Remove the old docker drive from the volume group
  147. command: "vgreduce {{ docker_vg_name.stdout }} {{ docker_pv_name.stdout }}"
  148. - name: Remove the pv from the old drive
  149. command: "pvremove {{ docker_pv_name.stdout }}"
  150. - name: Extend the docker lvm
  151. command: "lvextend -l '90%VG' /dev/{{ docker_vg_name.stdout }}/docker-pool"
  152. - name: detach old docker volume
  153. delegate_to: localhost
  154. ec2_vol:
  155. region: "{{ ec2_region }}"
  156. id: "{{ old_docker_volume_id }}"
  157. instance: None
  158. - name: tag the old vol valid label
  159. delegate_to: localhost
  160. ec2_tag: region={{ ec2_region }} resource={{old_docker_volume_id}}
  161. args:
  162. tags:
  163. Name: "{{ ec2_tag_Name }} REMOVE ME"
  164. register: voltags
  165. - name: Update the /etc/sysconfig/docker-storage-setup with new device
  166. lineinfile:
  167. dest: /etc/sysconfig/docker-storage-setup
  168. regexp: ^DEVS=
  169. line: DEVS=/dev/xvdc