Andy Bavier | e6478b2 | 2017-12-21 13:17:56 -0700 | [diff] [blame] | 1 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 2 | |
| 3 | imports: |
| 4 | - custom_types/network.yaml |
| 5 | - custom_types/networktemplate.yaml |
| 6 | - custom_types/slice.yaml |
| 7 | - custom_types/site.yaml |
| 8 | |
| 9 | description: shared network config, generated by platform-install |
| 10 | |
| 11 | topology_template: |
| 12 | node_templates: |
| 13 | |
| 14 | # site, fully created in deployment.yaml |
| 15 | {{ site_name }}: |
| 16 | type: tosca.nodes.Site |
| 17 | properties: |
| 18 | name: {{ site_name }} |
| 19 | must-exist: true |
| 20 | |
| 21 | # shared network |
| 22 | shared_template: |
| 23 | type: tosca.nodes.NetworkTemplate |
| 24 | properties: |
| 25 | name: shared_template |
| 26 | visibility: private |
| 27 | translation: none |
| 28 | vtn_kind: PRIVATE |
| 29 | |
| 30 | shared_network: |
| 31 | type: tosca.nodes.Network |
| 32 | properties: |
| 33 | name: shared_network |
| 34 | subnet: 100.0.0.0/24 |
| 35 | requirements: |
| 36 | - template: |
| 37 | node: shared_template |
| 38 | relationship: tosca.relationships.BelongsToOne |
| 39 | - owner: |
| 40 | node: {{ site_name }}_shared |
| 41 | relationship: tosca.relationships.BelongsToOne |
| 42 | |
| 43 | {{ site_name }}_shared: |
| 44 | description: This slice exists solely to own the private network |
| 45 | type: tosca.nodes.Slice |
| 46 | properties: |
| 47 | name: {{ site_name }}_shared |
| 48 | network: noauto |
| 49 | requirements: |
| 50 | - site: |
| 51 | node: {{ site_name }} |
| 52 | relationship: tosca.relationships.BelongsToOne |
| 53 | |
| 54 | |