scaleup.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ---
  2. - name: Update master count
  3. hosts: oo_masters:!oo_masters_to_config
  4. serial: 1
  5. roles:
  6. - openshift_facts
  7. post_tasks:
  8. - openshift_facts:
  9. role: master
  10. local_facts:
  11. ha: "{{ openshift_master_ha | default(groups.oo_masters | length > 1) }}"
  12. master_count: "{{ openshift_master_count | default(groups.oo_masters | length) }}"
  13. - name: Update master count
  14. modify_yaml:
  15. dest: "{{ openshift.common.config_base}}/master/master-config.yaml"
  16. yaml_key: 'kubernetesMasterConfig.masterCount'
  17. yaml_value: "{{ openshift.master.master_count }}"
  18. notify:
  19. - restart master api
  20. - restart master controllers
  21. handlers:
  22. - name: restart master api
  23. service: name={{ openshift.common.service_type }}-master-controllers state=restarted
  24. notify: verify api server
  25. # We retry the controllers because the API may not be 100% initialized yet.
  26. - name: restart master controllers
  27. command: "systemctl restart {{ openshift.common.service_type }}-master-controllers"
  28. retries: 3
  29. delay: 5
  30. register: result
  31. until: result.rc == 0
  32. - name: verify api server
  33. command: >
  34. curl --silent --tlsv1.2
  35. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  36. {{ openshift.master.api_url }}/healthz/ready
  37. args:
  38. # Disables the following warning:
  39. # Consider using get_url or uri module rather than running curl
  40. warn: no
  41. register: api_available_output
  42. until: api_available_output.stdout == 'ok'
  43. retries: 120
  44. delay: 1
  45. changed_when: false
  46. - include: ../openshift-master/set_network_facts.yml
  47. - include: ../../openshift-etcd/private/certificates.yml
  48. - include: ../openshift-master/config.yml
  49. - include: ../openshift-loadbalancer/config.yml
  50. - include: ../../openshift-node/private/certificates.yml
  51. - include: ../../openshift-node/private/config.yml