Add Heat template for OAM Network 65/45465/1
authorMarco Platania <platania@research.att.com>
Tue, 1 May 2018 15:58:56 +0000 (11:58 -0400)
committerMarco Platania <platania@research.att.com>
Tue, 1 May 2018 15:58:56 +0000 (11:58 -0400)
- 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>
heat/OAM-Network/network.yaml [new file with mode: 0644]

diff --git a/heat/OAM-Network/network.yaml b/heat/OAM-Network/network.yaml
new file mode 100644 (file)
index 0000000..cdfb2d7
--- /dev/null
@@ -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