post-provision-openstack.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ---
  2. - hosts: cluster_hosts
  3. name: Wait for the the nodes to come up
  4. become: False
  5. gather_facts: False
  6. tasks:
  7. - when: not openstack_use_bastion|default(False)|bool
  8. wait_for_connection:
  9. - when: openstack_use_bastion|default(False)|bool
  10. delegate_to: bastion
  11. wait_for_connection:
  12. - hosts: cluster_hosts
  13. gather_facts: True
  14. tasks:
  15. - name: Debug hostvar
  16. debug:
  17. msg: "{{ hostvars[inventory_hostname] }}"
  18. verbosity: 2
  19. - name: OpenShift Pre-Requisites (part 1)
  20. include: pre-install.yml
  21. - name: Assign hostnames
  22. hosts: cluster_hosts
  23. gather_facts: False
  24. become: true
  25. roles:
  26. - role: hostnames
  27. - name: Subscribe DNS Host to allow for configuration below
  28. hosts: dns
  29. gather_facts: False
  30. become: true
  31. roles:
  32. - role: subscription-manager
  33. when: hostvars.localhost.rhsm_register|default(False)
  34. tags: 'subscription-manager'
  35. - name: Determine which DNS server(s) to use for our generated records
  36. hosts: localhost
  37. gather_facts: False
  38. become: False
  39. roles:
  40. - dns-server-detect
  41. - name: Build the DNS Server Views and Configure DNS Server(s)
  42. hosts: dns
  43. gather_facts: False
  44. become: true
  45. roles:
  46. - role: dns-views
  47. - role: infra-ansible/roles/dns-server
  48. - name: Build and process DNS Records
  49. hosts: localhost
  50. gather_facts: True
  51. become: False
  52. roles:
  53. - role: dns-records
  54. use_bastion: "{{ openstack_use_bastion|default(False)|bool }}"
  55. - role: infra-ansible/roles/dns
  56. - name: Switch the stack subnet to the configured private DNS server
  57. hosts: localhost
  58. gather_facts: False
  59. become: False
  60. vars_files:
  61. - stack_params.yaml
  62. tasks:
  63. - include_role:
  64. name: openstack-stack
  65. tasks_from: subnet_update_dns_servers
  66. - name: OpenShift Pre-Requisites (part 2)
  67. hosts: OSEv3
  68. gather_facts: true
  69. become: true
  70. vars:
  71. interface: "{{ flannel_interface|default('eth1') }}"
  72. interface_file: /etc/sysconfig/network-scripts/ifcfg-{{ interface }}
  73. interface_config:
  74. DEVICE: "{{ interface }}"
  75. TYPE: Ethernet
  76. BOOTPROTO: dhcp
  77. ONBOOT: 'yes'
  78. DEFTROUTE: 'no'
  79. PEERDNS: 'no'
  80. pre_tasks:
  81. - name: "Include DNS configuration to ensure proper name resolution"
  82. lineinfile:
  83. state: present
  84. dest: /etc/sysconfig/network
  85. regexp: "IP4_NAMESERVERS={{ hostvars['localhost'].private_dns_server }}"
  86. line: "IP4_NAMESERVERS={{ hostvars['localhost'].private_dns_server }}"
  87. - name: "Configure the flannel interface options"
  88. when: openshift_use_flannel|default(False)|bool
  89. block:
  90. - file:
  91. dest: "{{ interface_file }}"
  92. state: touch
  93. mode: 0644
  94. owner: root
  95. group: root
  96. - lineinfile:
  97. state: present
  98. dest: "{{ interface_file }}"
  99. regexp: "{{ item.key }}="
  100. line: "{{ item.key }}={{ item.value }}"
  101. with_dict: "{{ interface_config }}"
  102. roles:
  103. - node-network-manager
  104. - include: prepare-and-format-cinder-volume.yaml
  105. when: >
  106. prepare_and_format_registry_volume|default(False) or
  107. (cinder_registry_volume is defined and
  108. cinder_registry_volume.changed|default(False))