CORD-2385 Move profile-specific configuration to M-CORD repo
Change-Id: I008f9affb7194665d3de5eff331c49372bc8b73e
diff --git a/templates/flat-net-s1u.yaml.j2 b/templates/flat-net-s1u.yaml.j2
new file mode 100644
index 0000000..01ca850
--- /dev/null
+++ b/templates/flat-net-s1u.yaml.j2
@@ -0,0 +1,55 @@
+tosca_definitions_version: tosca_simple_yaml_1_0
+
+imports:
+ - custom_types/xos.yaml
+ - custom_types/site.yaml
+ - custom_types/slice.yaml
+ - custom_types/flavor.yaml
+ - custom_types/network.yaml
+ - custom_types/networktemplate.yaml
+
+description: flat network for S1U interface
+
+topology_template:
+ node_templates:
+
+# site, fully created in deployment.yaml
+ {{ site_name }}:
+ type: tosca.nodes.Site
+ properties:
+ name: {{ site_name }}
+
+# flat network for s1u
+ flat_template_s1u:
+ type: tosca.nodes.NetworkTemplate
+ properties:
+ name: flat_template_s1u
+ visibility: private
+ translation: none
+ vtn_kind: FLAT
+
+ flat_network_s1u:
+ type: tosca.nodes.Network
+ properties:
+ name: flat_network_s1u
+ subnet: 119.0.0.0/24
+ permit_all_slices: true
+ requirements:
+ - template:
+ node: flat_template_s1u
+ relationship: tosca.relationships.BelongsToOne
+ - owner:
+ node: {{ site_name }}_flat_s1u
+ relationship: tosca.relationships.BelongsToOne
+
+ {{ site_name }}_flat_s1u:
+ description: This slice exists solely to own the Flat network
+ type: tosca.nodes.Slice
+ properties:
+ name: {{ site_name }}_flat_s1u
+ default_isolation: vm
+ network: noauto
+ requirements:
+ - site:
+ node: {{ site_name }}
+ relationship: tosca.relationships.BelongsToOne
\ No newline at end of file