blob: 7447322137e90249dc0eee4336fcc20a5de6dc0c [file] [log] [blame]
Andy Bavier01685f82017-12-21 14:06:54 -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 Williams4a830ed2018-01-18 09:55:27 -070027description: management network config, generated by ecord profile
Andy Bavier01685f82017-12-21 14:06:54 -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 Williams4a830ed2018-01-18 09:55:27 -070038# management (vtn: MANAGEMENT_LOCAL) network
Andy Bavier01685f82017-12-21 14:06:54 -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 Williams4a830ed2018-01-18 09:55:27 -070052 subnet: {{ vtn_net_management_local_cidr }}
Andy Bavier01685f82017-12-21 14:06:54 -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 Williams4a830ed2018-01-18 09:55:27 -070062{% if use_vtn_net_management_host %}
63# management_host (vtn: MANAGEMENT_HOST) network
64 management_host_template:
Andy Bavier01685f82017-12-21 14:06:54 -070065 type: tosca.nodes.NetworkTemplate
66 properties:
Zack Williams4a830ed2018-01-18 09:55:27 -070067 name: management_host_template
Andy Bavier01685f82017-12-21 14:06:54 -070068 visibility: private
69 translation: none
70 vtn_kind: MANAGEMENT_HOST
71
Zack Williams4a830ed2018-01-18 09:55:27 -070072 management_host:
Andy Bavier01685f82017-12-21 14:06:54 -070073 type: tosca.nodes.Network
74 properties:
Zack Williams4a830ed2018-01-18 09:55:27 -070075 name: management_host
Andy Bavier01685f82017-12-21 14:06:54 -070076 # ip_version: 4
Zack Williams4a830ed2018-01-18 09:55:27 -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 Bavier01685f82017-12-21 14:06:54 -070081 requirements:
82 - template:
Zack Williams4a830ed2018-01-18 09:55:27 -070083 node: management_host_template
Andy Bavier01685f82017-12-21 14:06:54 -070084 relationship: tosca.relationships.BelongsToOne
85 - owner:
86 node: slice#{{ site_name }}_management
87 relationship: tosca.relationships.BelongsToOne
88{% endif %}
89
Zack Williams4a830ed2018-01-18 09:55:27 -070090# Slice to own management networks
Andy Bavier01685f82017-12-21 14:06:54 -070091 slice#{{ site_name }}_management:
Zack Williams4a830ed2018-01-18 09:55:27 -070092 description: This slice exists solely to own the management network(s)
Andy Bavier01685f82017-12-21 14:06:54 -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