blob: d25fcc3633346f4f6e0a46d51eb78f0b2a5226c8 [file] [log] [blame]
Andrea Campanellac5c1b7c2017-06-23 14:06:03 +02001tosca_definitions_version: tosca_simple_yaml_1_0
2
3imports:
4 - custom_types/xos.yaml
5
6description: carrierethernet-app onboarding, generated by platform-install
7topology_template:
8 node_templates:
9
10 service#ONOS_CORD:
11 type: tosca.nodes.ONOSService
12 properties:
13 no-delete: true
14 no-create: true
15 no-update: true
16
17 service#ONOS_Fabric:
18 type: tosca.nodes.ONOSService
19 properties:
20 no-delete: true
21 no-create: true
22 no-update: true
23
24 CarrierEthernet_ONOS_app:
25 type: tosca.nodes.ONOSApp
26 requirements:
27 - onos_tenant:
28 node: service#ONOS_CORD
29 relationship: tosca.relationships.TenantOfService
30 properties:
Marc De Leenheer0eeba152017-10-22 21:40:13 -070031 install_dependencies: http://mavenrepo:8080/repository/org/opencord/ce/ce-api/1.0.0-SNAPSHOT/ce-api-1.0.0-SNAPSHOT.oar, http://mavenrepo:8080/repository/org/opencord/ce/bigswitch/1.0.0-SNAPSHOT/bigswitch-1.0.0-SNAPSHOT.oar, http://mavenrepo:8080/repository/org/opencord/ce/local-channel/1.0.0-SNAPSHOT/local-channel-1.0.0-SNAPSHOT.oar, http://mavenrepo:8080/repository/org/opencord/ce/vee/1.0.0-SNAPSHOT/vee-1.0.0-SNAPSHOT.oar
Andrea Campanellafd12cae2017-10-24 15:17:27 +020032 dependencies: org.onosproject.drivers.microsemi, org.onosproject.cfm
Scott Baker5b1923a2017-10-19 14:18:16 -070033 component_config: >
34 {
35 "org.onosproject.netconf.ctl.impl.NetconfControllerImpl": {
36 "netconfConnectTimeout": "60",
37 "netconfReplyTimeout": "60"
Andrea Campanellac1c563a2017-10-25 16:48:34 +020038 },
39 "org.opencord.ce.local.bigswitch.BigSwitchManager": {
40 "domainId": "{{ ansible_default_ipv4.address }}-cord-onos"
Scott Baker5b1923a2017-10-19 14:18:16 -070041 }
42 }
Andrea Campanellac5c1b7c2017-06-23 14:06:03 +020043
44 CarrierEthernet_Fabric_ONOS_app:
45 type: tosca.nodes.ONOSApp
46 requirements:
47 - onos_tenant:
48 node: service#ONOS_Fabric
49 relationship: tosca.relationships.TenantOfService
50 properties:
Marc De Leenheer0eeba152017-10-22 21:40:13 -070051 install_dependencies: http://mavenrepo:8080/repository/org/opencord/ce/ce-api/1.0.0-SNAPSHOT/ce-api-1.0.0-SNAPSHOT.oar, http://mavenrepo:8080/repository/org/opencord/ce/bigswitch/1.0.0-SNAPSHOT/bigswitch-1.0.0-SNAPSHOT.oar, http://mavenrepo:8080/repository/org/opencord/ce/local-channel/1.0.0-SNAPSHOT/local-channel-1.0.0-SNAPSHOT.oar, http://mavenrepo:8080/repository/org/opencord/ce/fabric/1.0.0-SNAPSHOT/fabric-1.0.0-SNAPSHOT.oar
Andrea Campanellac1c563a2017-10-25 16:48:34 +020052 component_config: >
53 {
54 "org.opencord.ce.local.bigswitch.BigSwitchManager": {
55 "domainId": "{{ ansible_default_ipv4.address }}-fabric-onos"
56 }
57 }