Andy Bavier | 3ade4a5 | 2017-12-20 10:40:16 -0700 | [diff] [blame] | 1 | |
| 2 | {# |
| 3 | Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | #} |
| 17 | |
| 18 | |
| 19 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 20 | |
| 21 | imports: |
| 22 | - custom_types/networktemplate.yaml |
| 23 | - custom_types/network.yaml |
| 24 | - custom_types/slice.yaml |
| 25 | - custom_types/site.yaml |
| 26 | |
| 27 | description: management network config, generated by platform-install |
| 28 | |
| 29 | topology_template: |
| 30 | node_templates: |
| 31 | |
| 32 | # site, fully created in deployment.yaml |
| 33 | {{ site_name }}: |
| 34 | type: tosca.nodes.Site |
| 35 | properties: |
| 36 | name: {{ site_name }} |
| 37 | |
| 38 | # management network |
| 39 | management_template: |
| 40 | type: tosca.nodes.NetworkTemplate |
| 41 | properties: |
| 42 | name: management_template |
| 43 | visibility: private |
| 44 | translation: none |
| 45 | vtn_kind: MANAGEMENT_LOCAL |
| 46 | |
| 47 | management: |
| 48 | type: tosca.nodes.Network |
| 49 | properties: |
| 50 | name: management |
| 51 | # ip_version: 4 |
| 52 | subnet: {{ management_network_cidr }} |
| 53 | permit_all_slices: true |
| 54 | requirements: |
| 55 | - template: |
| 56 | node: management_template |
| 57 | relationship: tosca.relationships.BelongsToOne |
| 58 | - owner: |
| 59 | node: slice#{{ site_name }}_management |
| 60 | relationship: tosca.relationships.BelongsToOne |
| 61 | |
| 62 | {% if use_management_hosts %} |
| 63 | management_hosts_template: |
| 64 | type: tosca.nodes.NetworkTemplate |
| 65 | properties: |
| 66 | name: management_hosts_template |
| 67 | visibility: private |
| 68 | translation: none |
| 69 | vtn_kind: MANAGEMENT_HOST |
| 70 | |
| 71 | management_hosts: |
| 72 | type: tosca.nodes.Network |
| 73 | properties: |
| 74 | # ip_version: 4 |
| 75 | subnet: {{ management_hosts_net_cidr }} |
| 76 | start_ip: {{ management_hosts_net_range_xos_low }} |
| 77 | end_ip: {{ management_hosts_net_range_xos_high }} |
| 78 | requirements: |
| 79 | - template: |
| 80 | node: management_hosts_template |
| 81 | relationship: tosca.relationships.BelongsToOne |
| 82 | - owner: |
| 83 | node: slice#{{ site_name }}_management |
| 84 | relationship: tosca.relationships.BelongsToOne |
| 85 | {% endif %} |
| 86 | |
| 87 | slice#{{ site_name }}_management: |
| 88 | description: This slice exists solely to own the management network |
| 89 | type: tosca.nodes.Slice |
| 90 | properties: |
| 91 | network: noauto |
| 92 | name: {{ site_name }}_management |
| 93 | requirements: |
| 94 | - site: |
| 95 | node: {{ site_name }} |
| 96 | relationship: tosca.relationships.BelongsToOne |
| 97 | |