diff options
author | Marco Platania <platania@research.att.com> | 2018-05-01 11:58:56 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2018-05-01 11:58:56 -0400 |
commit | d10567f9996abf39f248d3395494964023a31912 (patch) | |
tree | 6066799330b9be319b2a7032749b854e7fefebcf /heat | |
parent | 15851e5ce5512066aa0184091b245c31fab24ad3 (diff) |
Add Heat template for OAM Network
- The Heat template for the creation of OAM network is required to run VNFs managed by K8s-installed ONAP
- The OAM network must be created before the VNFs
Change-Id: I9de8185d75bba4ebe838461773acb7c06beeb518
Issue-ID: INT-444
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'heat')
-rw-r--r-- | heat/OAM-Network/network.yaml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/heat/OAM-Network/network.yaml b/heat/OAM-Network/network.yaml new file mode 100644 index 00000000..cdfb2d79 --- /dev/null +++ b/heat/OAM-Network/network.yaml @@ -0,0 +1,17 @@ +heat_template_version: 2013-05-23 + +resources: + + # ONAP management private network + oam_onap: + type: OS::Neutron::Net + properties: + name: oam_onap_vnf_test + + oam_onap_subnet: + type: OS::Neutron::Subnet + properties: + name: oam_onap_vnf_test + network_id: { get_resource: oam_onap } + cidr: 10.0.0.0/16 + enable_dhcp: false |