Browse Source

Merge pull request #9001 from luis5tb/flat-secgrp

Add infra secgroup rules to the flat secgrp rules
OpenShift Merge Robot 6 năm trước cách đây
mục cha
commit
dc285a6bc1
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      roles/openshift_openstack/templates/heat_stack.yaml.j2

+ 4 - 1
roles/openshift_openstack/templates/heat_stack.yaml.j2

@@ -421,6 +421,9 @@ resources:
 {% for rule in openshift_openstack_node_secgroup_rules|list %}
         - {{ rule|to_json }}
 {% endfor %}
+{% for rule in openshift_openstack_infra_secgroup_rules|list %}
+        - {{ rule|to_json }}
+{% endfor %}
 {% else %}
   master-secgrp:
     type: OS::Neutron::SecurityGroup
@@ -466,7 +469,6 @@ resources:
           params:
             cluster_id: {{ openshift_openstack_full_dns_domain }}
       rules: {{ openshift_openstack_node_secgroup_rules|to_json }}
-{% endif %}
 
   infra-secgrp:
     type: OS::Neutron::SecurityGroup
@@ -497,6 +499,7 @@ resources:
           params:
             cluster_id: {{ openshift_openstack_full_dns_domain }}
       rules: {{ openshift_openstack_cns_secgroup_rules|to_json }}
+{% endif %}
 
   lb-secgrp:
     type: OS::Neutron::SecurityGroup