openstack.yml 600 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: openshift_cloudprovider_openstack_auth_url is defined and openshift_cloudprovider_openstack_username is defined and openshift_cloudprovider_openstack_password is defined and (openshift_cloudprovider_openstack_tenant_id is defined or openshift_cloudprovider_openstack_tenant_name is defined)