David K. Bainbridge | 4ecc126 | 2019-07-01 13:39:11 -0700 | [diff] [blame] | 1 | # Copyright 2019 Ciena Corporation |
| 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 | |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame^] | 15 | # IMAGE SELECTION |
| 16 | # --------------- |
| 17 | # By default no defaults are set and the image tags specified in the helm |
| 18 | # charts will be used. If you would like to use the images generated from the |
| 19 | # HEAD of the "master" git branches, then uncomment this below block and |
| 20 | # set "<VALUE>" to "master". Similarly, if you want to use the images |
| 21 | # generated from the HEAD of the "voltha-2.1" git branches, then uncomment |
| 22 | # this block and replace "<VALUE>" with "voltha-2.1". |
| 23 | #defaults: |
| 24 | # image_tag: <VALUE> |
David K. Bainbridge | 4ecc126 | 2019-07-01 13:39:11 -0700 | [diff] [blame] | 25 | |
David Bainbridge | e10f6d5 | 2019-07-25 00:28:13 +0000 | [diff] [blame] | 26 | images: |
David Bainbridge | d31d612 | 2019-08-13 19:37:59 +0000 | [diff] [blame] | 27 | onos: |
David Bainbridge | d31d612 | 2019-08-13 19:37:59 +0000 | [diff] [blame] | 28 | repository: voltha/voltha-onos |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame^] | 29 | # IMAGE_SELECTION |
| 30 | # --------------- |
| 31 | # The helm chart used to deploy ONOS is the public ONOS helm chart so, |
| 32 | # there is a need to specify the exact image repository and image tag. |
| 33 | # If you would like to use the "master", "voltha-2.1", or other image |
| 34 | # just replace the "tag" value below. |
| 35 | tag: 2.1.0 |
| 36 | |
| 37 | # IMAGE_SELECTION |
| 38 | # --------------- |
| 39 | # Below are a list of all the images utilized by kind-voltha. This list is |
| 40 | # provided as a conveinence if you would like to override on a per image |
| 41 | # basis. If you are using the defaults, master, or voltha-2.1 branch there |
| 42 | # is no need to utilize this list. |
| 43 | #images: |
| 44 | # onos: |
| 45 | # repositry: voltha/voltha-onos |
| 46 | # tag: 2.1.0 |
| 47 | # adapter_open_olt: |
| 48 | # repositry: voltha/voltha-openolt-adapter |
| 49 | # tag: 2.1.1 |
| 50 | # adapter_open_onu: |
| 51 | # repositry: voltha/voltha-openonu-adapter |
| 52 | # tag: 2.1.0 |
| 53 | # adapter_simulated_olt: |
| 54 | # repositry: voltha/voltha-adapter-simulated-olt |
| 55 | # tag: 2.1.1 |
| 56 | # adapter_simulated_olt: |
| 57 | # repositry: voltha/voltha-adapter-simulated-onu |
| 58 | # tag: 2.1.1 |
| 59 | # bbsim: |
| 60 | # repositry: voltha/voltha-bbsim |
| 61 | # tag: 2.1.0 |
| 62 | # afrouter: |
| 63 | # repositry: voltha/voltha-afrouter |
| 64 | # tag: 2.1.1 |
| 65 | # afrouterd: |
| 66 | # repositry: voltha/voltha-afrouterd |
| 67 | # tag: 2.1.1 |
| 68 | # cli: |
| 69 | # repositry: voltha/voltha-cli |
| 70 | # tag: 2.1.1 |
| 71 | # ofagent: |
| 72 | # repositry: voltha/voltha-ofagent |
| 73 | # tag: 2.1.1 |
| 74 | # ro_core: |
| 75 | # repositry: voltha/voltha-ro-core |
| 76 | # tag: 2.1.1 |
| 77 | # rw_core: |
| 78 | # repositry: voltha/voltha-rw-core |
| 79 | # tag: 2.1.1 |
David Bainbridge | e10f6d5 | 2019-07-25 00:28:13 +0000 | [diff] [blame] | 80 | |
David K. Bainbridge | 4ecc126 | 2019-07-01 13:39:11 -0700 | [diff] [blame] | 81 | onos_env: |
| 82 | - name: POD_IP |
| 83 | valueFrom: |
| 84 | fieldRef: |
| 85 | fieldPath: status.podIP |
| 86 | - name: NAMESPACE |
| 87 | valueFrom: |
| 88 | fieldRef: |
| 89 | fieldPath: metadata.namespace |
| 90 | - name: ONOS_APPS |
| 91 | value: "drivers,openflow-base,hostprovider" |
| 92 | |
David K. Bainbridge | f1c8f4c | 2019-07-01 14:30:38 -0700 | [diff] [blame] | 93 | # Customization for BBSIM |
| 94 | kafka_broker: 'voltha-kafka.voltha.svc.cluster.local:9092' |