config.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. deployment_type: "{{ openshift_deployment_type }}"
  19. - role: node
  20. local_facts:
  21. external_id: "{{ openshift_node_external_id | default(None) }}"
  22. resources_cpu: "{{ openshift_node_resources_cpu | default(None) }}"
  23. resources_memory: "{{ openshift_node_resources_memory | default(None) }}"
  24. pod_cidr: "{{ openshift_node_pod_cidr | default(None) }}"
  25. labels: "{{ openshift_node_labels | default(None) }}"
  26. annotations: "{{ openshift_node_annotations | default(None) }}"
  27. - name: Create temp directory for syncing certs
  28. hosts: localhost
  29. connection: local
  30. sudo: false
  31. gather_facts: no
  32. tasks:
  33. - name: Create local temp directory for syncing certs
  34. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  35. register: mktemp
  36. changed_when: False
  37. - name: Register nodes
  38. hosts: oo_first_master
  39. vars:
  40. openshift_nodes: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']) }}"
  41. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  42. roles:
  43. - openshift_register_nodes
  44. tasks:
  45. # TODO: update so that we only sync necessary configs/directories, currently
  46. # we sync for all nodes in oo_nodes_to_config. We will need to inspect the
  47. # configs on the nodes to make the determination on whether to sync or not.
  48. - name: Create the temp directory on the master
  49. file:
  50. path: "{{ sync_tmpdir }}"
  51. owner: "{{ ansible_ssh_user }}"
  52. mode: 0700
  53. state: directory
  54. changed_when: False
  55. - name: Create a tarball of the node config directories
  56. command: tar -czvf {{ sync_tmpdir }}/{{ item.openshift.common.hostname }}.tgz ./
  57. args:
  58. chdir: "{{ openshift_generated_configs_dir }}/node-{{ item.openshift.common.hostname }}"
  59. with_items: openshift_nodes
  60. changed_when: False
  61. - name: Retrieve the node config tarballs from the master
  62. fetch:
  63. src: "{{ sync_tmpdir }}/{{ item.openshift.common.hostname }}.tgz"
  64. dest: "{{ sync_tmpdir }}/"
  65. fail_on_missing: yes
  66. validate_checksum: yes
  67. with_items: openshift_nodes
  68. changed_when: False
  69. - name: Configure node instances
  70. hosts: oo_nodes_to_config
  71. gather_facts: no
  72. vars:
  73. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}/{{ groups['oo_first_master'][0] }}/{{ hostvars.localhost.mktemp.stdout }}"
  74. openshift_sdn_master_url: "https://{{ hostvars[groups['oo_first_master'][0]].openshift.common.hostname }}:4001"
  75. pre_tasks:
  76. - name: Ensure certificate directory exists
  77. file:
  78. path: "{{ openshift_node_cert_dir }}"
  79. state: directory
  80. # TODO: notify restart openshift-node and/or restart openshift-sdn-node,
  81. # possibly test service started time against certificate/config file
  82. # timestamps in openshift-node or openshift-sdn-node to trigger notify
  83. - name: Unarchive the tarball on the node
  84. unarchive:
  85. src: "{{ sync_tmpdir }}/{{ openshift.common.hostname }}.tgz"
  86. dest: "{{ openshift_node_cert_dir }}"
  87. roles:
  88. - openshift_node
  89. - role: openshift_sdn_node
  90. when: openshift.common.use_openshift_sdn | bool
  91. - role: fluentd_node
  92. when: openshift.common.use_fluentd | bool
  93. tasks:
  94. - name: Create group for deployment type
  95. group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }}
  96. changed_when: False
  97. - name: Delete the temporary directory on the master
  98. hosts: oo_first_master
  99. gather_facts: no
  100. vars:
  101. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  102. tasks:
  103. - file: name={{ sync_tmpdir }} state=absent
  104. changed_when: False
  105. - name: Delete temporary directory on localhost
  106. hosts: localhost
  107. connection: local
  108. sudo: false
  109. gather_facts: no
  110. tasks:
  111. - file: name={{ mktemp.stdout }} state=absent
  112. changed_when: False
  113. # Additional config for online type deployments
  114. - name: Additional instance config
  115. hosts: oo_nodes_deployment_type_online
  116. gather_facts: no
  117. roles:
  118. - os_env_extras
  119. - os_env_extras_node