config.yml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. ---
  2. - name: Gather and set facts for node hosts
  3. hosts: oo_nodes_to_config
  4. roles:
  5. - openshift_facts
  6. tasks:
  7. # Since the master is registering the nodes before they are configured, we
  8. # need to make sure to set the node properties beforehand if we do not want
  9. # the defaults
  10. - openshift_facts:
  11. role: "{{ item.role }}"
  12. local_facts: "{{ item.local_facts }}"
  13. with_items:
  14. - role: common
  15. local_facts:
  16. hostname: "{{ openshift_hostname | default(None) }}"
  17. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  18. - role: node
  19. local_facts:
  20. external_id: "{{ openshift_node_external_id | default(None) }}"
  21. resources_cpu: "{{ openshift_node_resources_cpu | default(None) }}"
  22. resources_memory: "{{ openshift_node_resources_memory | default(None) }}"
  23. pod_cidr: "{{ openshift_node_pod_cidr | default(None) }}"
  24. labels: "{{ openshift_node_labels | default(None) }}"
  25. annotations: "{{ openshift_node_annotations | default(None) }}"
  26. deployment_type: "{{ openshift_deployment_type }}"
  27. - name: Create temp directory for syncing certs
  28. hosts: localhost
  29. gather_facts: no
  30. tasks:
  31. - name: Create local temp directory for syncing certs
  32. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  33. register: mktemp
  34. changed_when: False
  35. - name: Register nodes
  36. hosts: oo_first_master
  37. vars:
  38. openshift_nodes: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']) }}"
  39. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  40. roles:
  41. - openshift_register_nodes
  42. tasks:
  43. - name: Create the temp directory on the master
  44. file:
  45. path: "{{ sync_tmpdir }}"
  46. owner: "{{ ansible_ssh_user }}"
  47. mode: 0700
  48. state: directory
  49. changed_when: False
  50. - name: Create a tarball of the node config directories
  51. command: tar -czvf {{ sync_tmpdir }}/{{ item.openshift.common.hostname }}.tgz ./
  52. args:
  53. chdir: "{{ openshift_cert_dir }}/node-{{ item.openshift.common.hostname }}"
  54. with_items: openshift_nodes
  55. changed_when: False
  56. - name: Retrieve the node config tarballs from the master
  57. fetch:
  58. src: "{{ sync_tmpdir }}/{{ item.openshift.common.hostname }}.tgz"
  59. dest: "{{ sync_tmpdir }}/"
  60. flat: yes
  61. fail_on_missing: yes
  62. validate_checksum: yes
  63. with_items: openshift_nodes
  64. changed_when: False
  65. - name: Remove the temp directory on the master
  66. file:
  67. path: "{{ sync_tmpdir }}"
  68. state: absent
  69. changed_when: False
  70. - name: Configure node instances
  71. hosts: oo_nodes_to_config
  72. gather_facts: no
  73. vars:
  74. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  75. openshift_sdn_master_url: "https://{{ hostvars[groups['oo_first_master'][0]].openshift.common.hostname }}:4001"
  76. pre_tasks:
  77. - name: Ensure certificate directory exists
  78. file:
  79. path: "{{ openshift_node_cert_dir }}"
  80. state: directory
  81. # TODO: notify restart openshift-node and/or restart openshift-sdn-node,
  82. # possibly test service started time against certificate/config file
  83. # timestamps in openshift-node or openshift-sdn-node to trigger notify
  84. - name: Unarchive the tarball on the node
  85. unarchive:
  86. src: "{{ sync_tmpdir }}/{{ openshift.common.hostname }}.tgz"
  87. dest: "{{ openshift_node_cert_dir }}"
  88. roles:
  89. - openshift_node
  90. - { role: openshift_sdn_node, when: openshift.common.use_openshift_sdn | bool }
  91. tasks:
  92. - name: Create group for deployment type
  93. group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }}
  94. changed_when: False
  95. - name: Delete temporary directory
  96. hosts: localhost
  97. gather_facts: no
  98. tasks:
  99. - file: name={{ mktemp.stdout }} state=absent
  100. changed_when: False
  101. # Additional config for online type deployments
  102. - name: Additional instance config
  103. hosts: oo_nodes_deployment_type_online
  104. gather_facts: no
  105. roles:
  106. - os_env_extras
  107. - os_env_extras_node