summaryrefslogtreecommitdiffstats
path: root/roles/static_inventory/tasks/openstack.yml
blob: 95d0d172f9f62ecd784133bbe184c1d4787824c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
- no_log: true
  block:
    - name: fetch all nodes from openstack shade dynamic inventory
      command: shade-inventory --list
      register: registered_nodes_output
      when: refresh_inventory|bool

    - name: set fact for openstack inventory cluster nodes
      set_fact:
        registered_nodes: "{{ (registered_nodes_output.stdout | from_json) | json_query(q) }}"
      vars:
        q: "[] | [?metadata.clusterid=='{{stack_name}}']"
      when:
        - refresh_inventory|bool

    - name: set_fact for openstack inventory nodes
      set_fact:
        registered_bastion_nodes: "{{ (registered_nodes_output.stdout | from_json) | json_query(q) }}"
        registered_nodes_floating: "{{ (registered_nodes_output.stdout | from_json) | json_query(q2) }}"
      vars:
        q: "[] | [?metadata.group=='infra.{{stack_name}}']"
        q2: "[] | [?metadata.clusterid=='{{stack_name}}'] | [?public_v4!='']"
      when:
        - refresh_inventory|bool
        - use_bastion|bool

    - name: Add cluster nodes w/o floating IPs to inventory
      with_items: "{{ registered_nodes }}"
      when: not item in registered_nodes_floating
      add_host:
        name: '{{ item.name }}'
        groups: '{{ item.metadata.group }}'
        ansible_host: "{% if use_bastion|bool %}{{ item.name }}{% else %}{{ item.private_v4 }}{% endif %}"
        ansible_fqdn: '{{ item.name }}'
        ansible_user: '{{ ssh_user }}'
        ansible_private_key_file: '{{ private_ssh_key }}'
        ansible_ssh_extra_args: '-F {{ ssh_config_path }}'
        private_v4: '{{ item.private_v4 }}'

    - name: Add cluster nodes with floating IPs to inventory
      with_items: "{{ registered_nodes_floating }}"
      when: item in registered_nodes_floating
      add_host:
        name: '{{ item.name }}'
        groups: '{{ item.metadata.group }}'
        ansible_host: "{% if use_bastion|bool %}{{ item.name }}{% else %}{{ item.private_v4 }}{% endif %}"
        ansible_fqdn: '{{ item.name }}'
        ansible_user: '{{ ssh_user }}'
        ansible_private_key_file: '{{ private_ssh_key }}'
        ansible_ssh_extra_args: '-F {{ ssh_config_path }}'
        private_v4: '{{ item.private_v4 }}'
        public_v4: '{{ item.public_v4 }}'

    - name: Add bastion node to inventory
      add_host:
        name: bastion
        groups: bastions
        ansible_host: '{{ registered_bastion_nodes[0].public_v4 }}'
        ansible_fqdn: '{{ registered_bastion_nodes[0].name }}'
        ansible_user: '{{ ssh_user }}'
        ansible_private_key_file: '{{ private_ssh_key }}'
        ansible_ssh_extra_args: '-F {{ ssh_config_path }}'
        private_v4: '{{ registered_bastion_nodes[0].private_v4 }}'
        public_v4: '{{ registered_bastion_nodes[0].public_v4 }}'
      when:
        - registered_bastion_nodes is defined
        - use_bastion|bool