summaryrefslogtreecommitdiffstats
path: root/docs/refspec/open-o/sdn-nsd/VoLTE_underlayVPN_template.yaml
diff options
context:
space:
mode:
authorRich Bennett <rb2745@att.com>2017-09-25 16:05:53 -0400
committerRich Bennett <rb2745@att.com>2017-09-25 20:34:48 +0000
commitfbc78ae725bd64fceb5d6acdaaeb2ad5c6f54e59 (patch)
treefc77cd1075e53e9cf91fec6a99a8afdf0f11dade /docs/refspec/open-o/sdn-nsd/VoLTE_underlayVPN_template.yaml
parentfa2d7c391ff2982d580bf34b876c51bddbe6532b (diff)
On-Board Modelspec to use RTD, convert wiki docs
Create top level docs folder Move folders and files to docs folder Create top level index structure All exist rst files were connected Convert 2 wiki documents to restructured text (listed in Jira Issue MODELING-22 Change-Id: I6f66524a27c7c19ffdee091f1e3da7f748bb6c1f Issue-ID: MODELING-22 Signed-off-by: Rich Bennett <rb2745@att.com>
Diffstat (limited to 'docs/refspec/open-o/sdn-nsd/VoLTE_underlayVPN_template.yaml')
-rw-r--r--docs/refspec/open-o/sdn-nsd/VoLTE_underlayVPN_template.yaml181
1 files changed, 181 insertions, 0 deletions
diff --git a/docs/refspec/open-o/sdn-nsd/VoLTE_underlayVPN_template.yaml b/docs/refspec/open-o/sdn-nsd/VoLTE_underlayVPN_template.yaml
new file mode 100644
index 0000000..a7d5e42
--- /dev/null
+++ b/docs/refspec/open-o/sdn-nsd/VoLTE_underlayVPN_template.yaml
@@ -0,0 +1,181 @@
+# Copyright 2017 Huawei Technologies Co., Ltd.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+###############################################################################
+##### L3 VPN Underlay Connection ####
+###############################################################################
+tosca_definitions_version: tosca_simple_yaml_1_0
+description: creates underlay vpn connection, l3 vpn template
+imports:
+ - Definitions/underlayVPN_type_definition.yaml
+
+###############################################################################
+
+metadata:
+ id: vpnUnderlayL3
+ template_name: underlayvpn
+ version: 0.1
+ vendor: sdno
+ template_author: Huawei
+
+
+####################################### TOPOLOGY ##############################
+topology_template:
+ inputs:
+ name:
+ type: string
+ description: Name of underlayervpn
+ description:
+ type: string
+ description: description of underlayvpn
+ serviceType:
+ type: string
+ description: serviceType of underlayvpn
+ default: 'l3vpn'
+ topology:
+ type: string
+ description: topology of underlayvpn
+ default: 'full-mesh'
+ technology:
+ type: string
+ description: technology of underlayvpn
+ default: 'mpls'
+ pe1_ip:
+ type: string
+ description: mgrip of pe1
+ ac1_port:
+ type: string
+ description: ac1 port
+ ac1_svlan:
+ type: integer
+ description: ac1 svlan
+ ac1_ip:
+ type: string
+ description: ip of ac1, only for layer3 vpn
+ ac1_peer_ip:
+ type: string
+ description: ip of ac1 peer CE tp, only for layer3 vpn
+ ac1_route:
+ type: string
+ description: route configure of ac1, only for layer3 vpn
+ pe2_ip:
+ type: string
+ description: mgrip of pe2
+ ac2_port:
+ type: string
+ description: ac2 port
+ ac2_svlan:
+ type: integer
+ description: ac2 svlan
+ ac2_ip:
+ type: string
+ description: ip of ac2, only for layer3 vpn
+ ac2_peer_ip:
+ type: string
+ description: ip of ac2 peer CE tp, only for layer3 vpn
+ ac2_route:
+ type: string
+ description: route configure of ac2, only for layer3 vpn
+
+
+# *****************************************************************************
+# node templates
+# *****************************************************************************
+
+ node_templates:
+
+ # Network Nodes, to be retrieved from the resource inventory
+ pe1:
+ type: sdno.node.Node
+ properties:
+ ipAddress: {get_input: pe1_ip}
+
+ pe2:
+ type: sdno.node.Node
+ properties:
+ ipAddress: {get_input: pe2_ip}
+
+
+ # Connectivity Service and Service Endpoints
+
+ vpnService:
+ type: sdno.node.ConnectivityService.UnderlayVpn
+ properties:
+ name: {get_input: name}
+ requirements:
+ - endPoint: ac1
+ - endPoint: ac2
+ - realizes: vpnConnection
+
+ ac1:
+ type: sdno.node.ServiceEndPoint.AC
+ properties:
+ port: {get_input: ac1_port}
+ ip: {get_input: ac1_ip}
+ svlan: {get_input: ac1_svlan}
+ route: {get_input: ac1_route}
+ peerIp: {get_input: ac1_peer_ip}
+ requirements:
+ - node: pe1
+
+ ac2:
+ type: sdno.node.ServiceEndPoint.AC
+ properties:
+ port: {get_input: ac2_port}
+ ip: {get_input: ac2_ip}
+ svlan: {get_input: ac2_svlan}
+ route: {get_input: ac2_route}
+ peerIp: {get_input: ac2_peer_ip}
+ requirements:
+ - node: pe2
+
+
+ # Connection and Connection Endpoints
+
+ vpnConnection:
+ type: sdno.node.Connection.UnderlayVpn
+ properties:
+ name: {get_input: name}
+ description: {get_input: description}
+ vpnBasicInfo:
+ serviceType: {get_input: serviceType}
+ topology: {get_input: topology}
+ technology: {get_input: technology}
+ requirements:
+ - endPoint: tp1
+ - endPoint: tp2
+
+ interfaces:
+ standard:
+ create:
+ #implementation: 'POST /openoapi/sdnol3vpn/v1/l3vpns'
+ delete:
+ implementation: 'DELETE /openoapi/sdnol3vpn/v1/l3vpns/{uuid}'
+ get:
+ implementation: 'GET /openoapi/sdnol3vpn/v1/l3vpns'
+ deploy:
+ implementation: 'POST /openoapi/sdnol3vpn/v1/l3vpns'
+ undeploy:
+ implementation: 'DELETE /openoapi/sdnol3vpn/v1/l3vpns/{uuid}'
+ update:
+ implementation: 'PUT /openoapi/sdnol3vpn/v1/l3vpns/{uuid}'
+
+
+ tp1:
+ type: sdno.node.ConnectionEndPoint.Tp
+
+ tp2:
+ type: sdno.node.ConnectionEndPoint.Tp
+ substitution_mappings:
+ node_type: tosca.nodes.sdno.NS.underlayvpn \ No newline at end of file