summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cloud_provider/tasks/main.yml
blob: ab3055c8b57f5f1d28cb1647e155b43f0fde6631 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
- 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

- include: gce.yml
  when: cloudprovider_is_gce | bool