blob: aae46f207b867d59f64b99d03ee22a36bb1b9581 [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# Only used by BASE-CORD
19
20tosca_definitions_version: tosca_simple_yaml_1_0
21
22description: TOSCA for bootstrapping Address Manager service
23
24imports:
25 - custom_types/addressmanagerservice.yaml
26 - custom_types/addresspool.yaml
27
28topology_template:
29 node_templates:
30
31 addresses_vsg:
32 type: tosca.nodes.AddressPool
33 properties:
34 name: addresses_vsg
35 addresses: 10.7.1.0/24
36 gateway_ip: 10.7.1.1
37 gateway_mac: a4:23:05:06:01:01
38 requirements:
39 - service:
40 node: service#addressmanager
41 relationship: tosca.relationships.BelongsToOne
42
43 addresses_public:
44 type: tosca.nodes.AddressPool
45 properties:
46 name: addresses_public
47 addresses: 10.8.1.0/24
48 gateway_ip: 10.8.1.1
49 gateway_mac: a4:23:05:06:01:01
50 requirements:
51 - service:
52 node: service#addressmanager
53 relationship: tosca.relationships.BelongsToOne
54
55 service#addressmanager:
56 type: tosca.nodes.AddressManagerService
57 properties:
58 name: addressmanager