Andy Bavier | 3ade4a5 | 2017-12-20 10:40:16 -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 | # Only used by BASE-CORD |
| 19 | |
| 20 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 21 | |
| 22 | description: TOSCA for bootstrapping Address Manager service |
| 23 | |
| 24 | imports: |
| 25 | - custom_types/addressmanagerservice.yaml |
| 26 | - custom_types/addresspool.yaml |
| 27 | |
| 28 | topology_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 |