Andy Bavier | c4d39fc | 2017-10-24 16:48:32 -0700 | [diff] [blame] | 1 | |
| 2 | {# |
| 3 | Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | #} |
| 17 | |
| 18 | |
| 19 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 20 | |
| 21 | description: TOSCA for bootstrapping Address Manager service |
| 22 | |
| 23 | imports: |
| 24 | - custom_types/xos.yaml |
| 25 | - custom_types/addressmanager.yaml |
| 26 | |
| 27 | topology_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 |