Browse Source

openstack: don't check for kuryr AND lbaas

When you configure use_kuryr you will already get the API load balancer.
Antoni Segura Puimedon 7 years ago
parent
commit
988f055bee
1 changed files with 0 additions and 5 deletions
  1. 0 5
      roles/openshift_openstack/tasks/check-prerequisites.yml

+ 0 - 5
roles/openshift_openstack/tasks/check-prerequisites.yml

@@ -31,11 +31,6 @@
   when: (use_trunk_ports | default(False)) and
         ('trunk' not in openstack_network_extensions)
 
-# Check Kuryr has LBaaSv2 available
-- fail:
-    msg: "Kuryr enabled but OpenStack LBaaS is not."
-  when: openshift_use_kuryr | default(False) and not openshift_openstack_use_lbaas_load_balancer
-
 # Check jmespath
 - name: Try to import python module shade
   command: python -c "import jmespath"