summaryrefslogtreecommitdiffstats
path: root/roles/openshift_ansible_inventory/tasks/main.yml
blob: 4a0968686af84f6462245022f5c89abef330ca3d (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
---
- action: "{{ ansible_pkg_mgr }} name={{ item}} state=present"
  with_items:
  - openshift-ansible-inventory
  - openshift-ansible-inventory-aws
  - openshift-ansible-inventory-gce

- name:
  copy:
    content: "{{ oo_inventory_accounts | to_nice_yaml }}"
    dest: /etc/ansible/multi_inventory.yaml
    group: "{{ oo_inventory_group }}"
    owner: "{{ oo_inventory_owner }}"
    mode: "0640"

- file:
    state: directory
    dest: /etc/ansible/inventory
    owner: root
    group: libra_ops
    mode: 0750

- file:
    state: link
    src: /usr/share/ansible/inventory/multi_inventory.py
    dest: /etc/ansible/inventory/multi_inventory.py
    owner: root
    group: libra_ops

# This cron uses the above location to call its job
- name: Cron to keep cache fresh
  cron:
    name: 'multi_inventory'
    minute: '*/10'
    job: '/usr/share/ansible/inventory/multi_inventory.py --refresh-cache &> /dev/null'
  when: oo_cron_refresh_cache is defined and oo_cron_refresh_cache

- name: Set cache location
  file:
    state: directory
    dest: "{{ oo_inventory_cache_location | dirname }}"
    owner: root
    group: libra_ops
    recurse: yes
    mode: '2770'
  when: oo_inventory_cache_location is defined