| {{/* vim: set filetype=mustache: */}} |
| {{/* |
| Copyright 2018-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. |
| */}} |
| {{- define "mcord.fixtureTosca" -}} |
| tosca_definitions_version: tosca_simple_yaml_1_0 |
| |
| imports: |
| - custom_types/deployment.yaml |
| - custom_types/site.yaml |
| |
| description: set up site and deployment and link them |
| |
| topology_template: |
| node_templates: |
| |
| {{ .Values.cordSiteName }}: |
| type: tosca.nodes.Site |
| properties: |
| name: {{ .Values.cordSiteName }} |
| site_url: http://mysite.opencord.us/ |
| hosts_nodes: true |
| |
| {{ .Values.cordDeploymentName }}: |
| type: tosca.nodes.Deployment |
| properties: |
| name: {{ .Values.cordDeploymentName }} |
| {{- end -}} |
| |
| {{- define "mcord.onosTosca" -}} |
| tosca_definitions_version: tosca_simple_yaml_1_0 |
| |
| imports: |
| - custom_types/onosapp.yaml |
| - custom_types/onosservice.yaml |
| - custom_types/serviceinstanceattribute.yaml |
| |
| description: Configures the VOLTHA ONOS service |
| |
| topology_template: |
| node_templates: |
| |
| service#onos: |
| type: tosca.nodes.ONOSService |
| properties: |
| name: onos |
| kind: data |
| rest_hostname: {{ .onosRestService | quote }} |
| rest_port: 8181 |
| |
| onos_app#segmentrouting: |
| type: tosca.nodes.ONOSApp |
| properties: |
| name: org.onosproject.segmentrouting |
| app_id: org.onosproject.segmentrouting |
| requirements: |
| - owner: |
| node: service#onos |
| relationship: tosca.relationships.BelongsToOne |
| |
| onos_app#netcfghostprovider: |
| type: tosca.nodes.ONOSApp |
| properties: |
| name: org.onosproject.netcfghostprovider |
| app_id: org.onosproject.netcfghostprovider |
| requirements: |
| - owner: |
| node: service#onos |
| relationship: tosca.relationships.BelongsToOne |
| |
| onos_app#openflow: |
| type: tosca.nodes.ONOSApp |
| properties: |
| name: org.onosproject.openflow |
| app_id: org.onosproject.openflow |
| requirements: |
| - owner: |
| node: service#onos |
| relationship: tosca.relationships.BelongsToOne |
| {{- end -}} |
| |
| {{- define "mcord.serviceGraphTosca" -}} |
| tosca_definitions_version: tosca_simple_yaml_1_0 |
| |
| imports: |
| - custom_types/fabricservice.yaml |
| - custom_types/mcordsubscriberservice.yaml |
| - custom_types/onosservice.yaml |
| - custom_types/progranservice.yaml |
| - custom_types/servicegraphconstraint.yaml |
| - custom_types/servicedependency.yaml |
| - custom_types/service.yaml |
| |
| description: Configures the M-CORD service graph |
| |
| topology_template: |
| node_templates: |
| |
| service#progran: |
| type: tosca.nodes.ProgranService |
| properties: |
| name: progran |
| must-exist: true |
| |
| service#mcord: |
| type: tosca.nodes.MCordSubscriberService |
| properties: |
| name: mcord |
| must-exist: true |
| |
| service#onos: |
| type: tosca.nodes.ONOSService |
| properties: |
| name: onos |
| must-exist: true |
| |
| service#fabric: |
| type: tosca.nodes.FabricService |
| properties: |
| name: fabric |
| must-exist: true |
| |
| service#epc-local: |
| type: tosca.nodes.Service |
| properties: |
| name: epc-local |
| |
| service#epc-remote: |
| type: tosca.nodes.Service |
| properties: |
| name: epc-remote |
| |
| mcord_progran: |
| type: tosca.nodes.ServiceDependency |
| properties: |
| connect_method: none |
| requirements: |
| - subscriber_service: |
| node: service#progran |
| relationship: tosca.relationships.BelongsToOne |
| - provider_service: |
| node: service#mcord |
| relationship: tosca.relationships.BelongsToOne |
| |
| progran_epc_local: |
| type: tosca.nodes.ServiceDependency |
| properties: |
| connect_method: none |
| requirements: |
| - subscriber_service: |
| node: service#epc-local |
| relationship: tosca.relationships.BelongsToOne |
| - provider_service: |
| node: service#progran |
| relationship: tosca.relationships.BelongsToOne |
| |
| epc_local_epc_remote: |
| type: tosca.nodes.ServiceDependency |
| properties: |
| connect_method: none |
| requirements: |
| - subscriber_service: |
| node: service#epc-remote |
| relationship: tosca.relationships.BelongsToOne |
| - provider_service: |
| node: service#epc-local |
| relationship: tosca.relationships.BelongsToOne |
| |
| service_dependency#onos-fabric_fabric: |
| type: tosca.nodes.ServiceDependency |
| properties: |
| connect_method: none |
| requirements: |
| - subscriber_service: |
| node: service#fabric |
| relationship: tosca.relationships.BelongsToOne |
| - provider_service: |
| node: service#onos |
| relationship: tosca.relationships.BelongsToOne |
| |
| constraints: |
| type: tosca.nodes.ServiceGraphConstraint |
| properties: |
| {{- if .Values.seba.enabled }} |
| constraints: '[ ["mcord", null, "onos"], ["progran", null, "fabric"], ["epc-local", null, null] ["epc-remote", null, null] ]' |
| {{ else }} |
| constraints: '[ ["mcord", "rcord", null], ["progran", "volt", "att-workflow-driver"], ["epc-local", "fabric-crossconnect", "onos"], ["epc-remote", null, "fabric"] ]' |
| {{- end -}} |
| {{- end -}} |
| |