File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
magnum/drivers/k8s_fedora_coreos_v1/templates Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -1131,6 +1131,25 @@ resources:
1131
1131
port_range_max : 65535
1132
1132
security_group : {get_resource: secgroup_kube_minion}
1133
1133
remote_group : {get_resource: secgroup_kube_minion}
1134
+ # allow traffic between PODs for ML2/OVN
1135
+ secgroup_rule_tcp_kube_minion_pods_cidr :
1136
+ condition : create_cluster_resources
1137
+ type : OS::Neutron::SecurityGroupRule
1138
+ properties :
1139
+ protocol : tcp
1140
+ port_range_min : 1
1141
+ port_range_max : 65535
1142
+ remote_ip_prefix : {get_param: pods_network_cidr}
1143
+ security_group : {get_resource: secgroup_kube_minion}
1144
+ secgroup_rule_udp_kube_minion_pods_cidr :
1145
+ condition : create_cluster_resources
1146
+ type : OS::Neutron::SecurityGroupRule
1147
+ properties :
1148
+ protocol : udp
1149
+ port_range_min : 1
1150
+ port_range_max : 65535
1151
+ remote_ip_prefix : {get_param: pods_network_cidr}
1152
+ security_group : {get_resource: secgroup_kube_minion}
1134
1153
1135
1154
# #####################################################################
1136
1155
#
You can’t perform that action at this time.
0 commit comments