scaleup.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. master_count: "{{ openshift_master_count | default(groups.oo_masters | length) }}"
  12. - name: Update master count
  13. modify_yaml:
  14. dest: "{{ openshift.common.config_base}}/master/master-config.yaml"
  15. yaml_key: 'kubernetesMasterConfig.masterCount'
  16. yaml_value: "{{ openshift.master.master_count }}"
  17. notify:
  18. - restart master
  19. handlers:
  20. - name: restart master
  21. command: /usr/local/bin/master-restart "{{ item }}"
  22. with_items:
  23. - api
  24. - controllers
  25. notify: verify api server
  26. - name: verify api server
  27. command: >
  28. curl --silent --tlsv1.2
  29. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  30. {{ openshift.master.api_url }}/healthz/ready
  31. args:
  32. # Disables the following warning:
  33. # Consider using get_url or uri module rather than running curl
  34. warn: no
  35. register: api_available_output
  36. until: api_available_output.stdout == 'ok'
  37. retries: 120
  38. delay: 1
  39. changed_when: false
  40. - import_playbook: set_network_facts.yml
  41. - import_playbook: ../../openshift-etcd/private/master_etcd_certificates.yml
  42. - import_playbook: config.yml
  43. - import_playbook: ../../openshift-loadbalancer/private/config.yml
  44. - import_playbook: ../../openshift-node/private/certificates.yml
  45. - import_playbook: ../../openshift-node/private/config.yml