summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cfme/config.yml
blob: 08df4a57eb6991ad28a0e0722f2c128a69fa308f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- name: Setup CFME
  hosts: oo_first_master
  pre_tasks:
  - name: Create a temporary place to evaluate the PV templates
    command: mktemp -d /tmp/openshift-ansible-XXXXXXX
    register: r_openshift_cfme_mktemp
    changed_when: false

  tasks:
  - name: Run the CFME Setup Role
    include_role:
      name: openshift_cfme
    vars:
      template_dir: "{{ hostvars[groups.masters.0].r_openshift_cfme_mktemp.stdout }}"