blob: 809e00cbc9e058f65e4391ea2c47ad21b0ddd88b [file] [log] [blame]
Andy Bavier3ade4a52017-12-20 10:40:16 -07001
2{#
3Copyright 2017-present Open Networking Foundation
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16#}
17
18
19tosca_definitions_version: tosca_simple_yaml_1_0
20
21imports:
22 - custom_types/networktemplate.yaml
23 - custom_types/network.yaml
24 - custom_types/slice.yaml
25 - custom_types/site.yaml
26
Zack Williams2da41af2018-01-10 17:48:23 -070027description: management network config, generated by rcord profile
Andy Bavier3ade4a52017-12-20 10:40:16 -070028
29topology_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
Zack Williams2da41af2018-01-10 17:48:23 -070038# management (vtn: MANAGEMENT_LOCAL) network
Andy Bavier3ade4a52017-12-20 10:40:16 -070039 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
Zack Williams45be4ad2018-01-29 16:55:37 -070052 subnet: {{ vtn_net_management_local_cidr }}
Andy Bavier3ade4a52017-12-20 10:40:16 -070053 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
Zack Williams2da41af2018-01-10 17:48:23 -070062{% if use_vtn_net_management_host %}
63# management_host (vtn: MANAGEMENT_HOST) network
64 management_host_template:
Andy Bavier3ade4a52017-12-20 10:40:16 -070065 type: tosca.nodes.NetworkTemplate
66 properties:
Zack Williams2da41af2018-01-10 17:48:23 -070067 name: management_host_template
Andy Bavier3ade4a52017-12-20 10:40:16 -070068 visibility: private
69 translation: none
70 vtn_kind: MANAGEMENT_HOST
71
Zack Williams2da41af2018-01-10 17:48:23 -070072 management_host:
Andy Bavier3ade4a52017-12-20 10:40:16 -070073 type: tosca.nodes.Network
74 properties:
Zack Williams2da41af2018-01-10 17:48:23 -070075 name: management_host
Andy Bavier3ade4a52017-12-20 10:40:16 -070076 # ip_version: 4
Zack Williams2da41af2018-01-10 17:48:23 -070077 subnet: {{ vtn_net_management_host_cidr }}
78 start_ip: {{ vtn_net_management_host_range_xos_low }}
79 end_ip: {{ vtn_net_management_host_range_xos_high }}
80 permit_all_slices: true
Andy Bavier3ade4a52017-12-20 10:40:16 -070081 requirements:
82 - template:
Zack Williams2da41af2018-01-10 17:48:23 -070083 node: management_host_template
Andy Bavier3ade4a52017-12-20 10:40:16 -070084 relationship: tosca.relationships.BelongsToOne
85 - owner:
86 node: slice#{{ site_name }}_management
87 relationship: tosca.relationships.BelongsToOne
88{% endif %}
89
Zack Williams2da41af2018-01-10 17:48:23 -070090# Slice to own management networks
Andy Bavier3ade4a52017-12-20 10:40:16 -070091 slice#{{ site_name }}_management:
Zack Williams2da41af2018-01-10 17:48:23 -070092 description: This slice exists solely to own the management network(s)
Andy Bavier3ade4a52017-12-20 10:40:16 -070093 type: tosca.nodes.Slice
94 properties:
95 network: noauto
96 name: {{ site_name }}_management
97 requirements:
98 - site:
99 node: {{ site_name }}
100 relationship: tosca.relationships.BelongsToOne
101