From bc11e5d7e9012c05c4d12337529b31e70d3c7954 Mon Sep 17 00:00:00 2001 From: Gary Wu Date: Wed, 7 Feb 2018 10:23:27 -0800 Subject: Update config for ATT TLAB Change-Id: I0c81183c95ede3552c1085496ca9933622a20329 Issue-ID: INT-414 Signed-off-by: Gary Wu --- deployment/heat/onap-oom/onap-oom.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'deployment/heat/onap-oom/onap-oom.yaml') diff --git a/deployment/heat/onap-oom/onap-oom.yaml b/deployment/heat/onap-oom/onap-oom.yaml index 42c12a77a..760a9575d 100644 --- a/deployment/heat/onap-oom/onap-oom.yaml +++ b/deployment/heat/onap-oom/onap-oom.yaml @@ -106,6 +106,34 @@ resources: properties: length: 4 + # ONAP security group + onap_sg: + type: OS::Neutron::SecurityGroup + properties: + name: + str_replace: + template: base_rand + params: + base: onap_sg + rand: { get_resource: random-str } + description: security group used by ONAP + rules: + # All egress traffic + - direction: egress + ethertype: IPv4 + - direction: egress + ethertype: IPv6 + # ingress traffic + # ICMP + - protocol: icmp + - protocol: udp + port_range_min: 1 + port_range_max: 65535 + - protocol: tcp + port_range_min: 1 + port_range_max: 65535 + + # ONAP management private network oam_network: type: OS::Neutron::Net @@ -145,6 +173,8 @@ resources: properties: network: { get_resource: oam_network } fixed_ips: [{"subnet": { get_resource: oam_subnet }}] + security_groups: + - { get_resource: onap_sg } rancher_floating_ip: type: OS::Neutron::FloatingIP @@ -175,6 +205,8 @@ resources: properties: network: { get_resource: oam_network } fixed_ips: [{"subnet": { get_resource: oam_subnet }}] + security_groups: + - { get_resource: onap_sg } k8s_floating_ip: type: OS::Neutron::FloatingIP -- cgit 1.2.3-korg