blob: c23d423f7144ef2c8b6335c957e238b2004e6099 [file] [log] [blame]
Andy Bavierc4d39fc2017-10-24 16:48:32 -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
21description: TOSCA for bootstrapping Address Manager service
22
23imports:
24 - custom_types/xos.yaml
25 - custom_types/addressmanager.yaml
26
27topology_template:
28 node_templates:
29
30 addresses_vsg:
31 type: tosca.nodes.AddressPool
32 properties:
33 addresses: 10.7.1.0/24
34 gateway_ip: 10.7.1.1
35 gateway_mac: a4:23:05:06:01:01
36
37 addresses_public:
38 type: tosca.nodes.AddressPool
39 properties:
40 addresses: 10.8.1.0/24
41 gateway_ip: 10.8.1.1
42 gateway_mac: a4:23:05:06:01:01
43
44 service#addressmanager:
45 type: tosca.nodes.AddressManagerService
46 requirements:
47 - addresses_vsg:
48 node: addresses_vsg
49 relationship: tosca.relationships.ProvidesAddresses
50 - addresses_public:
51 node: addresses_public
52 relationship: tosca.relationships.ProvidesAddresses