scale-up.yaml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. ---
  2. # Get the needed information about the current deployment
  3. - hosts: masters[0]
  4. tasks:
  5. - name: Get number of app nodes
  6. shell: oc get nodes -l autoscaling=app --no-headers=true | wc -l
  7. register: oc_old_num_nodes
  8. - name: Get names of app nodes
  9. shell: oc get nodes -l autoscaling=app --no-headers=true | cut -f1 -d " "
  10. register: oc_old_app_nodes
  11. - hosts: localhost
  12. tasks:
  13. # Since both number and names of app nodes are to be removed
  14. # localhost variables for these values need to be set
  15. - name: Store old number and names of app nodes locally (if there is an existing deployment)
  16. when: '"masters" in groups'
  17. register: set_fact_result
  18. set_fact:
  19. oc_old_num_nodes: "{{ hostvars[groups['masters'][0]]['oc_old_num_nodes'].stdout }}"
  20. oc_old_app_nodes: "{{ hostvars[groups['masters'][0]]['oc_old_app_nodes'].stdout_lines }}"
  21. - name: Set default values for old app nodes (if there is no existing deployment)
  22. when: 'set_fact_result | skipped'
  23. set_fact:
  24. oc_old_num_nodes: 0
  25. oc_old_app_nodes: []
  26. # Set how many nodes are to be added (1 by default)
  27. - name: Set how many nodes are to be added
  28. set_fact:
  29. increment_by: 1
  30. - name: Check that the number corresponds to scaling up (not down)
  31. assert:
  32. that: 'increment_by | int >= 1'
  33. msg: >
  34. FAIL: The value of increment_by must be at least 1
  35. (but it is {{ increment_by | int }}).
  36. - name: Update openstack_num_nodes variable
  37. set_fact:
  38. openstack_num_nodes: "{{ oc_old_num_nodes | int + increment_by | int }}"
  39. # Run provision.yaml with higher number of nodes to create a new app-node VM
  40. - include: provision.yaml
  41. # Run config.yml to perform openshift installation
  42. # Path to openshift-ansible can be customised:
  43. # - the value of openshift_ansible_dir has to be an absolute path
  44. # - the path cannot contain the '/' symbol at the end
  45. # Creating a new deployment by the full installation
  46. - include: "{{ openshift_ansible_dir }}/playbooks/byo/config.yml"
  47. vars:
  48. openshift_ansible_dir: ../../../../openshift-ansible
  49. when: 'not groups["new_nodes"] | list'
  50. # Scaling up existing deployment
  51. - include: "{{ openshift_ansible_dir }}/playbooks/byo/openshift-node/scaleup.yml"
  52. vars:
  53. openshift_ansible_dir: ../../../../openshift-ansible
  54. when: 'groups["new_nodes"] | list'
  55. # Post-verification: Verify new number of nodes
  56. - hosts: masters[0]
  57. tasks:
  58. - name: Get number of nodes
  59. shell: oc get nodes -l autoscaling=app --no-headers=true | wc -l
  60. register: oc_new_num_nodes
  61. - name: Check that the actual result matches the defined value
  62. assert:
  63. that: 'oc_new_num_nodes.stdout | int == (hostvars["localhost"]["oc_old_num_nodes"] | int + hostvars["localhost"]["increment_by"] | int)'
  64. msg: >
  65. FAIL: Number of application nodes has not been increased accordingly
  66. (it should be {{ hostvars["localhost"]["oc_old_num_nodes"] | int + hostvars["localhost"]["increment_by"] | int }}
  67. but it is {{ oc_new_num_nodes.stdout | int }}).