main.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ---
  2. - action: "{{ ansible_pkg_mgr }} name={{ item}} state=present"
  3. with_items:
  4. - openshift-ansible-inventory
  5. - openshift-ansible-inventory-aws
  6. - openshift-ansible-inventory-gce
  7. - name:
  8. copy:
  9. content: "{{ oo_inventory_accounts | to_nice_yaml }}"
  10. dest: /etc/ansible/multi_inventory.yaml
  11. group: "{{ oo_inventory_group }}"
  12. owner: "{{ oo_inventory_owner }}"
  13. mode: "0640"
  14. - file:
  15. state: directory
  16. dest: /etc/ansible/inventory
  17. owner: root
  18. group: libra_ops
  19. mode: 0750
  20. - file:
  21. state: link
  22. src: /usr/share/ansible/inventory/multi_inventory.py
  23. dest: /etc/ansible/inventory/multi_inventory.py
  24. owner: root
  25. group: libra_ops
  26. # This cron uses the above location to call its job
  27. - name: Cron to keep cache fresh
  28. cron:
  29. name: 'multi_inventory'
  30. minute: '*/10'
  31. job: '/usr/share/ansible/inventory/multi_inventory.py --refresh-cache &> /dev/null'
  32. when: oo_cron_refresh_cache is defined and oo_cron_refresh_cache
  33. - name: Set cache location
  34. file:
  35. state: directory
  36. dest: "{{ oo_inventory_cache_location | dirname }}"
  37. owner: root
  38. group: libra_ops
  39. recurse: yes
  40. mode: '2770'
  41. when: oo_inventory_cache_location is defined