| |
| # Copyright 2017-present Open Networking Foundation |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| |
| tosca_definitions_version: tosca_simple_yaml_1_0 |
| |
| description: Template for deploying a single server with predefined properties. |
| |
| imports: |
| - custom_types/xos.yaml |
| |
| topology_template: |
| node_templates: |
| mysite: |
| type: tosca.nodes.Site |
| |
| Private: |
| type: tosca.nodes.NetworkTemplate |
| |
| # this one lets XOS auto-allocate a subnet |
| producer_private_network: |
| type: tosca.nodes.network.Network |
| properties: |
| ip_version: 4 |
| requirements: |
| - network_template: |
| node: Private |
| relationship: tosca.relationships.UsesNetworkTemplate |
| - slice: |
| node: mysite_producer |
| relationship: tosca.relationships.MemberOfSlice |
| - slice: |
| node: mysite_producer |
| relationship: tosca.relationships.ConnectsToSlice |
| |
| # this one specifies the subnet to use |
| producer_private_network2: |
| type: tosca.nodes.network.Network |
| properties: |
| ip_version: 4 |
| cidr: 123.123.0.0/16 |
| requirements: |
| - network_template: |
| node: Private |
| relationship: tosca.relationships.UsesNetworkTemplate |
| - slice: |
| node: mysite_producer |
| relationship: tosca.relationships.MemberOfSlice |
| - slice: |
| node: mysite_producer |
| relationship: tosca.relationships.ConnectsToSlice |
| |
| mysite_producer: |
| type: tosca.nodes.Slice |
| requirements: |
| - slice: |
| node: mysite |
| relationship: tosca.relationships.MemberOfSite |
| |
| mysite_consumer: |
| type: tosca.nodes.Slice |
| requirements: |
| - slice: |
| node: mysite |
| relationship: tosca.relationships.MemberOfSite |
| - network: |
| node: producer_private_network |
| relationship: tosca.relationships.ConnectsToNetwork |
| - network2: |
| node: producer_private_network2 |
| relationship: tosca.relationships.ConnectsToNetwork |
| |
| |