main.yml 622 B

123456789101112131415161718192021222324
  1. ---
  2. - name: Set cloud provider facts
  3. openshift_facts:
  4. role: cloudprovider
  5. openshift_env: "{{ item | oo_openshift_env }}"
  6. openshift_env_structures:
  7. - 'openshift.cloudprovider.aws.*'
  8. - 'openshift.cloudprovider.openstack.*'
  9. no_log: true
  10. with_items:
  11. - "{{ hostvars[inventory_hostname] }}"
  12. - "{{ hostvars }}"
  13. - name: Create cloudprovider config dir
  14. file:
  15. path: "{{ openshift.common.config_base }}/cloudprovider"
  16. state: directory
  17. when: has_cloudprovider | bool
  18. - include: openstack.yml
  19. when: cloudprovider_is_openstack | bool
  20. - include: aws.yml
  21. when: cloudprovider_is_aws | bool