blob: aae46f207b867d59f64b99d03ee22a36bb1b9581 [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
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080018# Only used by BASE-CORD
Andy Bavierc4d39fc2017-10-24 16:48:32 -070019
20tosca_definitions_version: tosca_simple_yaml_1_0
21
22description: TOSCA for bootstrapping Address Manager service
23
24imports:
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080025 - custom_types/addressmanagerservice.yaml
26 - custom_types/addresspool.yaml
Andy Bavierc4d39fc2017-10-24 16:48:32 -070027
28topology_template:
29 node_templates:
30
31 addresses_vsg:
32 type: tosca.nodes.AddressPool
33 properties:
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080034 name: addresses_vsg
Andy Bavierc4d39fc2017-10-24 16:48:32 -070035 addresses: 10.7.1.0/24
36 gateway_ip: 10.7.1.1
37 gateway_mac: a4:23:05:06:01:01
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080038 requirements:
39 - service:
40 node: service#addressmanager
41 relationship: tosca.relationships.BelongsToOne
Andy Bavierc4d39fc2017-10-24 16:48:32 -070042
43 addresses_public:
44 type: tosca.nodes.AddressPool
45 properties:
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080046 name: addresses_public
Andy Bavierc4d39fc2017-10-24 16:48:32 -070047 addresses: 10.8.1.0/24
48 gateway_ip: 10.8.1.1
49 gateway_mac: a4:23:05:06:01:01
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080050 requirements:
51 - service:
52 node: service#addressmanager
53 relationship: tosca.relationships.BelongsToOne
Andy Bavierc4d39fc2017-10-24 16:48:32 -070054
55 service#addressmanager:
56 type: tosca.nodes.AddressManagerService
Matteo Scandolo1ed76b82017-12-05 13:58:22 -080057 properties:
58 name: addressmanager