| |
| {# |
| 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 |
| |
| imports: |
| - custom_types/xos.yaml |
| - custom_types/addressmanager.yaml |
| |
| description: public network config, generated by platform-install |
| |
| topology_template: |
| node_templates: |
| |
| # site, fully created in deployment.yaml |
| {{ site_name }}: |
| type: tosca.nodes.Site |
| |
| |
| # Address Manager service, fully created in cord-service.yaml |
| service#addressmanager: |
| type: tosca.nodes.AddressManagerService |
| |
| # public network |
| |
| public_template: |
| type: tosca.nodes.NetworkTemplate |
| properties: |
| visibility: public |
| translation: none |
| vtn_kind: PUBLIC |
| |
| public: |
| type: tosca.nodes.network.Network |
| properties: |
| ip_version: 4 |
| requirements: |
| - network_template: |
| node: public_template |
| relationship: tosca.relationships.UsesNetworkTemplate |
| - owner: |
| node: {{ site_name }}_public |
| relationship: tosca.relationships.MemberOfSlice |
| - addressmanager_service_instance: |
| node: service#addressmanager |
| relationship: tosca.relationships.TenantOfService |
| |
| |
| {{ site_name }}_public: |
| description: This slice exists solely to own the public network |
| type: tosca.nodes.Slice |
| properties: |
| network: noauto |
| requirements: |
| - site: |
| node: {{ site_name }} |
| relationship: tosca.relationships.MemberOfSite |
| |