| {# |
| 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/slice.yaml |
| - custom_types/site.yaml |
| - custom_types/image.yaml |
| - custom_types/flavor.yaml |
| - custom_types/network.yaml |
| - custom_types/networktemplate.yaml |
| - custom_types/networkslice.yaml |
| - custom_types/exampleservice.yaml |
| - custom_types/exampleserviceinstance.yaml |
| |
| description: configure exampleservice |
| |
| topology_template: |
| node_templates: |
| |
| # site, image, fully created in deployment.yaml |
| {{ site_name }}: |
| type: tosca.nodes.Site |
| properties: |
| must-exist: true |
| name: {{ site_name }} |
| |
| m1.small: |
| type: tosca.nodes.Flavor |
| properties: |
| name: m1.small |
| must-exist: true |
| |
| trusty-server-multi-nic: |
| type: tosca.nodes.Image |
| properties: |
| name: trusty-server-multi-nic |
| must-exist: true |
| |
| # private network template, fully created somewhere else |
| private: |
| type: tosca.nodes.NetworkTemplate |
| properties: |
| must-exist: true |
| name: Private |
| |
| # management networks, fully created in management-net.yaml |
| management_network: |
| type: tosca.nodes.Network |
| properties: |
| must-exist: true |
| name: management |
| |
| # public network, fully created somewhere else |
| public_network: |
| type: tosca.nodes.Network |
| properties: |
| must-exist: true |
| name: public |
| |
| exampleservice_network: |
| type: tosca.nodes.Network |
| properties: |
| name: exampleservice_network |
| labels: exampleservice_private_network |
| requirements: |
| - template: |
| node: private |
| relationship: tosca.relationships.BelongsToOne |
| - owner: |
| node: {{ site_name }}_exampleservice |
| relationship: tosca.relationships.BelongsToOne |
| |
| # CORD Slices |
| {{ site_name }}_exampleservice: |
| description: Example Service Slice |
| type: tosca.nodes.Slice |
| properties: |
| name: {{ site_name }}_exampleservice |
| default_isolation: vm |
| network: noauto |
| requirements: |
| - site: |
| node: mysite |
| relationship: tosca.relationships.BelongsToOne |
| - service: |
| node: exampleservice |
| relationship: tosca.relationships.BelongsToOne |
| - default_image: |
| node: trusty-server-multi-nic |
| relationship: tosca.relationships.BelongsToOne |
| - default_flavor: |
| node: m1.small |
| relationship: tosca.relationships.BelongsToOne |
| |
| # CORD NetworkSlices |
| exampleservice_slice_management_network: |
| type: tosca.nodes.NetworkSlice |
| requirements: |
| - network: |
| node: management_network |
| relationship: tosca.relationships.BelongsToOne |
| - slice: |
| node: {{ site_name }}_exampleservice |
| relationship: tosca.relationships.BelongsToOne |
| |
| exampleservice_slice_public_network: |
| type: tosca.nodes.NetworkSlice |
| requirements: |
| - network: |
| node: public_network |
| relationship: tosca.relationships.BelongsToOne |
| - slice: |
| node: {{ site_name }}_exampleservice |
| relationship: tosca.relationships.BelongsToOne |
| |
| exampleservice_slice_exampleservice_network: |
| type: tosca.nodes.NetworkSlice |
| requirements: |
| - network: |
| node: exampleservice_network |
| relationship: tosca.relationships.BelongsToOne |
| - slice: |
| node: {{ site_name }}_exampleservice |
| relationship: tosca.relationships.BelongsToOne |
| |
| exampleservice: |
| type: tosca.nodes.ExampleService |
| properties: |
| name: exampleservice |
| public_key: {{ lookup('file', head_cord_profile_dir + '/key_import/exampleservice_rsa.pub') }} |
| private_key_fn: /opt/xos/services/exampleservice/keys/exampleservice_rsa |
| service_message: hello |
| |
| exampletenant1: |
| type: tosca.nodes.ExampleServiceInstance |
| properties: |
| name: exampletenant1 |
| tenant_message: world |
| requirements: |
| - owner: |
| node: exampleservice |
| relationship: tosca.relationships.BelongsToOne |
| |