Kailash | 564c48b | 2019-07-08 10:14:07 -0700 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | # curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @flex-pod1-olt-olt.yaml http://10.192.20.45:30007/run |
| 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/oltdevice.yaml |
| 20 | - custom_types/onudevice.yaml |
| 21 | - custom_types/voltservice.yaml |
| 22 | - custom_types/technologyprofile.yaml |
| 23 | description: Create a simulated OLT Device in VOLTHA |
| 24 | topology_template: |
| 25 | node_templates: |
| 26 | |
| 27 | service#volt: |
| 28 | type: tosca.nodes.VOLTService |
| 29 | properties: |
| 30 | name: volt |
| 31 | must-exist: true |
| 32 | |
| 33 | olt_device: |
| 34 | type: tosca.nodes.OLTDevice |
| 35 | properties: |
| 36 | name: olt-1 |
| 37 | device_type: openolt |
| 38 | host: 10.192.20.206 |
| 39 | port: 9191 |
| 40 | switch_datapath_id: of:0000cc37ab5b6da8 |
| 41 | switch_port: "10" |
| 42 | outer_tpid: "0x8100" |
| 43 | uplink: "65536" |
| 44 | nas_id: "NAS_ID" |
| 45 | serial_number: "EC1838000853" |
| 46 | requirements: |
| 47 | - volt_service: |
| 48 | node: service#volt |
| 49 | relationship: tosca.relationships.BelongsToOne |
| 50 | |
| 51 | technologyProfile: |
| 52 | type: tosca.nodes.TechnologyProfile |
| 53 | properties: |
| 54 | profile_id: 64 |
| 55 | technology: xgspon |
| 56 | profile_value: > |
| 57 | { |
| 58 | "name": "4QueueHybridProfileMap1", |
| 59 | "profile_type": "XPON", |
| 60 | "version": 1.0, |
| 61 | "num_gem_ports": 1, |
| 62 | "instance_control": { |
| 63 | "onu": "multi-instance", |
| 64 | "uni": "single-instance", |
| 65 | "max_gem_payload_size": "auto" |
| 66 | }, |
| 67 | "us_scheduler": { |
| 68 | "additional_bw": "auto", |
| 69 | "direction": "UPSTREAM", |
| 70 | "priority": 0, |
| 71 | "weight": 0, |
| 72 | "q_sched_policy": "hybrid" |
| 73 | }, |
| 74 | "ds_scheduler": { |
| 75 | "additional_bw": "auto", |
| 76 | "direction": "DOWNSTREAM", |
| 77 | "priority": 0, |
| 78 | "weight": 0, |
| 79 | "q_sched_policy": "hybrid" |
| 80 | }, |
| 81 | "upstream_gem_port_attribute_list": [{ |
| 82 | "pbit_map": "0b11111111", |
| 83 | "aes_encryption": "True", |
| 84 | "scheduling_policy": "StrictPriority", |
| 85 | "priority_q": 1, |
| 86 | "weight": 0, |
| 87 | "discard_policy": "TailDrop", |
| 88 | "max_q_size": "auto", |
| 89 | "discard_config": { |
| 90 | "min_threshold": 0, |
| 91 | "max_threshold": 0, |
| 92 | "max_probability": 0 |
| 93 | } |
| 94 | } |
| 95 | ], |
| 96 | "downstream_gem_port_attribute_list": [{ |
| 97 | "pbit_map": "0b11111111", |
| 98 | "aes_encryption": "True", |
| 99 | "scheduling_policy": "StrictPriority", |
| 100 | "priority_q": 1, |
| 101 | "weight": 0, |
| 102 | "discard_policy": "TailDrop", |
| 103 | "max_q_size": "auto", |
| 104 | "discard_config": { |
| 105 | "min_threshold": 0, |
| 106 | "max_threshold": 0, |
| 107 | "max_probability": 0 |
| 108 | } |
| 109 | } |
| 110 | ] |
| 111 | } |