config.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. - name: node/config.yml, populate oo_nodes_to_config host group if needed
  2. hosts: localhost
  3. gather_facts: no
  4. tasks:
  5. - name: "Evaluate oo_host_group_exp if it's set"
  6. add_host:
  7. name: '{{ item }}'
  8. groups: oo_nodes_to_config
  9. with_items: "{{ oo_host_group_exp | default('') }}"
  10. when: oo_host_group_exp is defined
  11. - add_host:
  12. name: "{{ groups['tag_env-host-type-' ~ cluster_id ~ '-openshift-master'][0] }}"
  13. groups: oo_first_master
  14. when: oo_host_group_exp is defined
  15. - name: Gather and set facts for hosts to configure
  16. hosts: oo_nodes_to_config
  17. roles:
  18. - openshift_facts
  19. tasks:
  20. # Since the master is registering the nodes before they are configured, we
  21. # need to make sure to set the node properties beforehand if we do not want
  22. # the defaults
  23. - openshift_facts:
  24. role: "{{ item.role }}"
  25. local_facts: "{{ item.local_facts }}"
  26. with_items:
  27. - role: common
  28. local_facts:
  29. hostname: "{{ ansible_default_ipv4.address }}"
  30. - role: node
  31. local_facts:
  32. external_id: "{{ openshift_node_external_id | default(None) }}"
  33. resources_cpu: "{{ openshfit_node_resources_cpu | default(None) }}"
  34. resources_memory: "{{ openshfit_node_resources_memory | default(None) }}"
  35. pod_cidr: "{{ openshfit_node_pod_cidr | default(None) }}"
  36. labels: "{{ openshfit_node_labels | default(None) }}"
  37. annotations: "{{ openshfit_node_annotations | default(None) }}"
  38. - name: Register nodes
  39. hosts: oo_first_master
  40. vars:
  41. openshift_nodes: "{{ hostvars
  42. | oo_select_keys(groups['oo_nodes_to_config']) }}"
  43. roles:
  44. - openshift_register_nodes
  45. tasks:
  46. - name: Create local temp directory for syncing certs
  47. local_action: command /usr/bin/mktemp -d /tmp/openshift-ansible-XXXXXXX
  48. register: mktemp
  49. - name: Sync master certs to localhost
  50. synchronize:
  51. mode: pull
  52. checksum: yes
  53. src: /var/lib/openshift/openshift.local.certificates
  54. dest: "{{ mktemp.stdout }}"
  55. - name: Configure instances
  56. hosts: oo_nodes_to_config
  57. vars_files:
  58. - vars.yml
  59. vars:
  60. sync_tmpdir: "{{ hostvars[groups['oo_first_master'][0]].mktemp.stdout }}"
  61. cert_parent_rel_path: openshift.local.certificates
  62. cert_rel_path: "{{ cert_parent_rel_path }}/node-{{ openshift.common.hostname }}"
  63. cert_base_path: /var/lib/openshift
  64. cert_parent_path: "{{ cert_base_path }}/{{ cert_parent_rel_path }}"
  65. cert_path: "{{ cert_base_path }}/{{ cert_rel_path }}"
  66. pre_tasks:
  67. - name: Ensure certificate directories exists
  68. file:
  69. path: "{{ item }}"
  70. state: directory
  71. with_items:
  72. - "{{ cert_path }}"
  73. - "{{ cert_parent_path }}/ca"
  74. # TODO: notify restart openshift-node and/or restart openshift-sdn-node,
  75. # possibly test service started time against certificate/config file
  76. # timestamps in openshift-node or openshift-sdn-node to trigger notify
  77. - name: Sync certs to nodes
  78. synchronize:
  79. checksum: yes
  80. src: "{{ item.src }}"
  81. dest: "{{ item.dest }}"
  82. owner: no
  83. group: no
  84. with_items:
  85. - src: "{{ sync_tmpdir }}/{{ cert_rel_path }}"
  86. dest: "{{ cert_parent_path }}"
  87. - src: "{{ sync_tmpdir }}/{{ cert_parent_rel_path }}/ca/cert.crt"
  88. dest: "{{ cert_parent_path }}/ca/cert.crt"
  89. - local_action: file name={{ sync_tmpdir }} state=absent
  90. run_once: true
  91. roles:
  92. - openshift_node
  93. - os_env_extras
  94. - os_env_extras_node