aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/heat/onap-rke/onap-oom.yaml
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2019-04-24 10:45:56 -0700
committerGary Wu <gary.i.wu@huawei.com>2019-04-24 10:59:52 -0700
commitcad70695c026fe0af7590bf1759fdc1f9aeb5d5e (patch)
tree74d916de8957c7028b18fe33a1efd985117c6663 /deployment/heat/onap-rke/onap-oom.yaml
parentceff347576a05661fcc9bec99327a4fb1a55b1f6 (diff)
Create onap_oam_ext private network
Create onap_oam_ext private network for use by vFWDT use case. Change-Id: Icb02c6fe353c5aaebadd1e382959a9c30191cb17 Issue-ID: INT-993 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'deployment/heat/onap-rke/onap-oom.yaml')
-rw-r--r--deployment/heat/onap-rke/onap-oom.yaml38
1 files changed, 30 insertions, 8 deletions
diff --git a/deployment/heat/onap-rke/onap-oom.yaml b/deployment/heat/onap-rke/onap-oom.yaml
index 763d14c1a..f4b21ec67 100644
--- a/deployment/heat/onap-rke/onap-oom.yaml
+++ b/deployment/heat/onap-rke/onap-oom.yaml
@@ -19,6 +19,10 @@ parameters:
type: string
description: CIDR of the OAM ONAP network
+ oam_ext_network_cidr:
+ type: string
+ description: CIDR of the onap_oam_ext network
+
ubuntu_1804_image:
type: string
description: Name of the Ubuntu 18.04 image
@@ -134,6 +138,13 @@ resources:
- protocol: 53
- protocol: 132
+ router:
+ type: OS::Neutron::Router
+ properties:
+ name:
+ list_join: ['-', [{ get_param: 'OS::stack_name' }, 'router']]
+ external_gateway_info:
+ network: { get_param: public_net_id }
# ONAP management private network
oam_network:
@@ -157,19 +168,30 @@ resources:
cidr: { get_param: oam_network_cidr }
dns_nameservers: [ "8.8.8.8" ]
- router:
- type: OS::Neutron::Router
+ oam_router_interface:
+ type: OS::Neutron::RouterInterface
properties:
- name:
- list_join: ['-', [{ get_param: 'OS::stack_name' }, 'router']]
- external_gateway_info:
- network: { get_param: public_net_id }
+ router_id: { get_resource: router }
+ subnet_id: { get_resource: oam_subnet }
- router_interface:
+ oam_ext_network:
+ type: OS::Neutron::Net
+ properties:
+ name: onap_oam_ext
+
+ oam_ext_subnet:
+ type: OS::Neutron::Subnet
+ properties:
+ name: onap_oam_ext
+ network_id: { get_resource: oam_ext_network }
+ cidr: { get_param: oam_ext_network_cidr }
+ dns_nameservers: [ "8.8.8.8" ]
+
+ oam_ext_router_interface:
type: OS::Neutron::RouterInterface
properties:
router_id: { get_resource: router }
- subnet_id: { get_resource: oam_subnet }
+ subnet_id: { get_resource: oam_ext_subnet }
rancher_private_port:
type: OS::Neutron::Port