summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cloud_provider/tasks/main.yml
blob: e217e37ea9aaefc0abe2fed42d170cdd1e2479ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- name: Set cloud provider facts
  openshift_facts:
    role: cloudprovider
    local_facts:
      kind: "{{ openshift_cloudprovider_kind | default(None) }}"

- name: Create cloudprovider config dir
  file:
    path: "{{ openshift.common.config_base }}/cloudprovider"
    state: directory
  when: has_cloudprovider | bool

- include: openstack.yml
  when: cloudprovider_is_openstack | bool

- include: aws.yml
  when: cloudprovider_is_aws | bool