Pingping Lin | 7770556 | 2017-10-12 16:51:41 -0700 | [diff] [blame] | 1 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 2 | |
| 3 | imports: |
| 4 | - custom_types/xos.yaml |
| 5 | |
| 6 | description: network for south bound interface (sbi) |
| 7 | |
| 8 | topology_template: |
| 9 | node_templates: |
| 10 | |
| 11 | # site, fully created in deployment.yaml |
| 12 | {{ site_name }}: |
| 13 | type: tosca.nodes.Site |
| 14 | |
| 15 | # sbi network |
| 16 | sbi_template: |
| 17 | type: tosca.nodes.NetworkTemplate |
| 18 | properties: |
| 19 | visibility: private |
| 20 | translation: none |
| 21 | vtn_kind: PRIVATE |
| 22 | |
| 23 | sbi_network: |
| 24 | type: tosca.nodes.network.Network |
| 25 | properties: |
| 26 | ip_version: 4 |
| 27 | cidr: 114.0.0.0/24 |
| 28 | requirements: |
| 29 | - network_template: |
| 30 | node: sbi_template |
| 31 | relationship: tosca.relationships.UsesNetworkTemplate |
| 32 | - owner: |
| 33 | node: {{ site_name }}_sbi |
| 34 | relationship: tosca.relationships.MemberOfSlice |
| 35 | |
| 36 | {{ site_name }}_sbi: |
| 37 | description: This slice exists solely to own the private network |
| 38 | type: tosca.nodes.Slice |
| 39 | properties: |
| 40 | network: noauto |
| 41 | requirements: |
| 42 | - site: |
| 43 | node: {{ site_name }} |
| 44 | relationship: tosca.relationships.MemberOfSite |
| 45 | |
| 46 | |