config.yml 3.3 KB

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