config.yml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. ---
  2. - name: 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: "{{ ec2_private_ip_address }}"
  29. public_hostname: "{{ ec2_ip_address }}"
  30. # TODO: this should be removed once openshift-sdn packages are available
  31. use_openshift_sdn: False
  32. - role: node
  33. local_facts:
  34. external_id: "{{ openshift_node_external_id | default(None) }}"
  35. resources_cpu: "{{ openshfit_node_resources_cpu | default(None) }}"
  36. resources_memory: "{{ openshfit_node_resources_memory | default(None) }}"
  37. pod_cidr: "{{ openshfit_node_pod_cidr | default(None) }}"
  38. labels: "{{ openshfit_node_labels | default(None) }}"
  39. annotations: "{{ openshfit_node_annotations | default(None) }}"
  40. - name: Register nodes
  41. hosts: oo_first_master
  42. vars:
  43. openshift_nodes: "{{ hostvars
  44. | oo_select_keys(groups['oo_nodes_to_config']) }}"
  45. roles:
  46. - openshift_register_nodes
  47. tasks:
  48. - name: Create local temp directory for syncing certs
  49. local_action: command /usr/bin/mktemp -d /tmp/openshift-ansible-XXXXXXX
  50. register: mktemp
  51. - name: Sync master certs to localhost
  52. synchronize:
  53. mode: pull
  54. checksum: yes
  55. src: /var/lib/openshift/openshift.local.certificates
  56. dest: "{{ mktemp.stdout }}"
  57. - name: Configure instances
  58. hosts: oo_nodes_to_config
  59. vars_files:
  60. - vars.yml
  61. vars:
  62. openshift_hostname: "{{ ec2_private_ip_address }}"
  63. openshift_public_hostname: "{{ ec2_ip_address }}"
  64. sync_tmpdir: "{{ hostvars[groups['oo_first_master'][0]].mktemp.stdout }}"
  65. cert_parent_rel_path: openshift.local.certificates
  66. cert_rel_path: "{{ cert_parent_rel_path }}/node-{{ openshift.common.hostname }}"
  67. cert_base_path: /var/lib/openshift
  68. cert_parent_path: "{{ cert_base_path }}/{{ cert_parent_rel_path }}"
  69. cert_path: "{{ cert_base_path }}/{{ cert_rel_path }}"
  70. pre_tasks:
  71. - name: Ensure certificate directories exists
  72. file:
  73. path: "{{ item }}"
  74. state: directory
  75. with_items:
  76. - "{{ cert_path }}"
  77. - "{{ cert_parent_path }}/ca"
  78. # TODO: notify restart openshift-node and/or restart openshift-sdn-node,
  79. # possibly test service started time against certificate/config file
  80. # timestamps in openshift-node or openshift-sdn-node to trigger notify
  81. - name: Sync certs to nodes
  82. synchronize:
  83. checksum: yes
  84. src: "{{ item.src }}"
  85. dest: "{{ item.dest }}"
  86. owner: no
  87. group: no
  88. with_items:
  89. - src: "{{ sync_tmpdir }}/{{ cert_rel_path }}"
  90. dest: "{{ cert_parent_path }}"
  91. - src: "{{ sync_tmpdir }}/{{ cert_parent_rel_path }}/ca/cert.crt"
  92. dest: "{{ cert_parent_path }}/ca/cert.crt"
  93. - local_action: file name={{ sync_tmpdir }} state=absent
  94. run_once: true
  95. roles:
  96. - openshift_node
  97. #- openshift_sdn_node
  98. - os_env_extras
  99. - os_env_extras_node