blob: 9c7b03ccbaca3af4e475da69d0109091473f145f [file] [log] [blame]
Andy Bavierf4594812017-12-21 16:01:05 -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
27description: management network config, generated by platform-install
28
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
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