| tosca_definitions_version: tosca_simple_yaml_1_0 |
| |
| description: Just enough Tosca to get the vSG slice running on the CORD POD |
| |
| imports: |
| - custom_types/xos.yaml |
| |
| topology_template: |
| node_templates: |
| # CORD Services |
| service#vtr: |
| type: tosca.nodes.Service |
| properties: |
| view_url: /admin/vtr/vtrservice/$id$/ |
| kind: vTR |
| replaces: service_vtr |
| |
| service#volt: |
| type: tosca.nodes.VOLTService |
| requirements: |
| - vsg_tenant: |
| node: service#vsg |
| relationship: tosca.relationships.TenantOfService |
| properties: |
| view_url: /admin/volt/voltservice/$id$/ |
| kind: vOLT |
| replaces: service_volt |
| public_key: { get_artifact: [ SELF, pubkey, LOCAL_FILE] } |
| private_key_fn: /opt/xos/services/volt/keys/volt_rsa |
| artifacts: |
| pubkey: /opt/xos/services/volt/keys/volt_rsa.pub |
| |
| addresses_vsg: |
| type: tosca.nodes.AddressPool |
| properties: |
| addresses: 10.6.1.128/26 |
| gateway_ip: 10.6.1.129 |
| gateway_mac: 02:42:0a:06:01:01 |
| |
| addresses_public: |
| type: tosca.nodes.AddressPool |
| properties: |
| addresses: 10.6.1.192/26 |
| gateway_ip: 10.6.1.193 |
| gateway_mac: 02:42:0a:06:01:01 |
| |
| service#vsg: |
| type: tosca.nodes.VSGService |
| requirements: |
| - vrouter_tenant: |
| node: service#vrouter |
| relationship: tosca.relationships.TenantOfService |
| properties: |
| view_url: /admin/vsg/vsgservice/$id$/ |
| backend_network_label: hpc_client |
| public_key: { get_artifact: [ SELF, pubkey, LOCAL_FILE] } |
| private_key_fn: /opt/xos/services/vsg/keys/vsg_rsa |
| # node_label: label_vsg |
| replaces: service_vsg |
| artifacts: |
| pubkey: /opt/xos/services/vsg/keys/vsg_rsa.pub |
| |
| service#vrouter: |
| type: tosca.nodes.VRouterService |
| properties: |
| view_url: /admin/vrouter/vrouterservice/$id$/ |
| replaces: service_vrouter |
| requirements: |
| - addresses_vsg: |
| node: addresses_vsg |
| relationship: tosca.relationships.ProvidesAddresses |
| - addresses_public: |
| node: addresses_public |
| relationship: tosca.relationships.ProvidesAddresses |
| |
| |
| service#ONOS_CORD: |
| type: tosca.nodes.ONOSService |
| properties: |
| no-delete: true |
| no-create: true |
| no-update: true |
| |
| service#ONOS_Fabric: |
| type: tosca.nodes.ONOSService |
| properties: |
| no-delete: true |
| no-create: true |
| no-update: true |
| |
| # The vOLT ONOS app is not yet fully integrated |
| #vOLT_ONOS_app: |
| # type: tosca.nodes.ONOSvOLTApp |
| # requirements: |
| # - onos_tenant: |
| # node: service#ONOS_CORD |
| # relationship: tosca.relationships.TenantOfService |
| # - volt_service: |
| # node: service#volt |
| # relationship: tosca.relationships.UsedByService |
| # properties: |
| # install_dependencies: onos-ext-notifier-1.0-SNAPSHOT.oar, onos-ext-volt-event-publisher-1.0-SNAPSHOT.oar |
| # dependencies: org.onosproject.openflow-base, org.onosproject.olt, org.ciena.onos.ext_notifier, org.ciena.onos.volt_event_publisher |
| # autogenerate: volt-network-cfg |
| |
| vRouter_ONOS_app: |
| type: tosca.nodes.ONOSvRouterApp |
| requirements: |
| - onos_tenant: |
| node: service#ONOS_Fabric |
| relationship: tosca.relationships.TenantOfService |
| - vrouter_service: |
| node: service#vrouter |
| relationship: tosca.relationships.UsedByService |
| properties: |
| dependencies: org.onosproject.vrouter |
| autogenerate: vrouter-network-cfg |
| |
| template#vsg: |
| type: tosca.nodes.NetworkTemplate |
| properties: |
| visibility: private |
| translation: none |
| vtn_kind: VSG |
| |
| management: |
| type: tosca.nodes.network.Network.XOS |
| properties: |
| no-create: true |
| no-delete: true |
| no-update: true |
| |
| management_hosts: |
| type: tosca.nodes.network.Network.XOS |
| properties: |
| no-create: true |
| no-delete: true |
| no-update: true |
| |
| image#vsg-1.1: |
| type: tosca.nodes.Image |
| |
| mysite: |
| type: tosca.nodes.Site |
| |
| label_vsg: |
| type: tosca.nodes.NodeLabel |
| |
| # Networks required by the CORD setup |
| mysite_vsg-access: |
| type: tosca.nodes.network.Network |
| properties: |
| ip_version: 4 |
| requirements: |
| - network_template: |
| node: template#vsg |
| relationship: tosca.relationships.UsesNetworkTemplate |
| - owner: |
| node: mysite_vsg |
| relationship: tosca.relationships.MemberOfSlice |
| - connection: |
| node: mysite_vsg |
| relationship: tosca.relationships.ConnectsToSlice |
| |
| # CORD Slices |
| mysite_vsg: |
| description: vSG Controller Slice |
| type: tosca.nodes.Slice |
| properties: |
| network: noauto |
| requirements: |
| - vsg_service: |
| node: service#vsg |
| relationship: tosca.relationships.MemberOfService |
| - site: |
| node: mysite |
| relationship: tosca.relationships.MemberOfSite |
| - management: |
| node: management |
| relationship: tosca.relationships.ConnectsToNetwork |
| # - management_hosts: |
| # node: management_hosts |
| # relationship: tosca.relationships.ConnectsToNetwork |
| - image: |
| node: image#vsg-1.1 |
| relationship: tosca.relationships.DefaultImage |