aboutsummaryrefslogtreecommitdiffstats
path: root/onap-oom-postconfigure.yaml
blob: 416d88c2c69e32ee0d2076270a68df0dd1101b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- hosts: kube-master
  run_once: "yes"
  vars_files:
    - "vars/ddf.yml"
    - "vars/pdf.yml"
  pre_tasks:
    - name: check if openstack_infos exists
      ansible.builtin.stat:
        path: "{{ base_dir }}/vars/openstack_infos.yml"
      delegate_to: localhost
      register: stat

    - name: include user clouds info
      include_vars: "{{ base_dir }}/vars/openstack_infos.yml"
      when: stat.stat.exists
  roles:
    - oom_postconfigure