openstack.yml 572 B

12345678910
  1. ---
  2. - fail:
  3. msg: "The Openstack integration requires OpenShift Enterprise 3.2 or Origin 1.2."
  4. when: not openshift.common.version_gte_3_2_or_1_2 | bool
  5. - name: Create cloud config
  6. template:
  7. dest: "{{ openshift.common.config_base }}/cloudprovider/openstack.conf"
  8. src: openstack.conf.j2
  9. when: "'auth_url' in openshift.cloudprovider.openstack and 'username' in openshift.cloudprovider.openstack and 'password' in openshift.cloudprovider.openstack and ('tenant_id' in openshift.cloudprovider.openstack or 'tenant_name' in openshift.cloudprovider.openstack)"