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 |
Matteo Scandolo | 209547b | 2019-11-01 14:48:15 -0700 | [diff] [blame] | 20 | # set "<VALUE>" to "master". Similarly, if you want to use the images |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 21 | # generated from the HEAD of the "voltha-2.1" git branches, then uncomment |
| 22 | # this block and replace "<VALUE>" with "voltha-2.1". |
David Bainbridge | 70c0ea8 | 2019-11-14 23:25:26 +0000 | [diff] [blame] | 23 | defaults: |
| 24 | image_tag: master |
David K. Bainbridge | 4ecc126 | 2019-07-01 13:39:11 -0700 | [diff] [blame] | 25 | |
David Bainbridge | fce8af4 | 2020-03-17 12:50:39 -0700 | [diff] [blame] | 26 | # OFAGENT IMPLEMENTATION |
| 27 | # ---------------------- |
| 28 | # There are currently two implementations of OFAGENT: the original written in |
| 29 | # Python and the reimplementation written in Go. The variable `use_ofagent_go` |
| 30 | # can be used to optionally select the implementation. The Go version is the |
| 31 | # version to be part of the official release and is the default. The Python |
| 32 | # verison has been deprecated and is no longer being actively workes, but is |
| 33 | # being left as an option for this release. |
| 34 | # |
| 35 | # Along with this change you will also may need to set the Docker image |
| 36 | # information below (search for START_OFAGENT_GO). |
| 37 | use_ofagent_go: true |
| 38 | |
David Bainbridge | 1ba64f1 | 2019-12-18 00:40:13 +0000 | [diff] [blame] | 39 | replicas: |
| 40 | cli: ~ |
| 41 | |
David Bainbridge | e10f6d5 | 2019-07-25 00:28:13 +0000 | [diff] [blame] | 42 | images: |
David Bainbridge | d31d612 | 2019-08-13 19:37:59 +0000 | [diff] [blame] | 43 | onos: |
David Bainbridge | d31d612 | 2019-08-13 19:37:59 +0000 | [diff] [blame] | 44 | repository: voltha/voltha-onos |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 45 | # IMAGE_SELECTION |
| 46 | # --------------- |
| 47 | # The helm chart used to deploy ONOS is the public ONOS helm chart so, |
| 48 | # there is a need to specify the exact image repository and image tag. |
Matteo Scandolo | 209547b | 2019-11-01 14:48:15 -0700 | [diff] [blame] | 49 | # If you would like to use the "master", "voltha-2.1", or other image |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 50 | # just replace the "tag" value below. |
David Bainbridge | 70c0ea8 | 2019-11-14 23:25:26 +0000 | [diff] [blame] | 51 | tag: master |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 52 | |
| 53 | # IMAGE_SELECTION |
| 54 | # --------------- |
| 55 | # Below are a list of all the images utilized by kind-voltha. This list is |
| 56 | # provided as a conveinence if you would like to override on a per image |
| 57 | # basis. If you are using the defaults, master, or voltha-2.1 branch there |
| 58 | # is no need to utilize this list. |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 59 | # adapter_open_olt: |
David Bainbridge | 4974fcb | 2019-08-31 02:24:50 +0000 | [diff] [blame] | 60 | # repository: voltha/voltha-openolt-adapter |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 61 | # tag: 2.1.1 |
| 62 | # adapter_open_onu: |
David Bainbridge | 4974fcb | 2019-08-31 02:24:50 +0000 | [diff] [blame] | 63 | # repository: voltha/voltha-openonu-adapter |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 64 | # tag: 2.1.0 |
| 65 | # adapter_simulated_olt: |
David Bainbridge | 4974fcb | 2019-08-31 02:24:50 +0000 | [diff] [blame] | 66 | # repository: voltha/voltha-adapter-simulated-olt |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 67 | # tag: 2.1.1 |
David Bainbridge | 4974fcb | 2019-08-31 02:24:50 +0000 | [diff] [blame] | 68 | # adapter_simulated_onu: |
| 69 | # repository: voltha/voltha-adapter-simulated-onu |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 70 | # tag: 2.1.1 |
| 71 | # bbsim: |
David Bainbridge | fce8af4 | 2020-03-17 12:50:39 -0700 | [diff] [blame] | 72 | # repository: voltha/bbsim |
| 73 | # tag: master |
| 74 | # START_OFAGENT_GO - Comment the following block to use the Python implementation |
| 75 | # of the ofagent |
| 76 | ofagent: |
| 77 | repository: voltha/ofagent-go |
| 78 | tag: master |
| 79 | # END_OFAGENT_GO |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 80 | # ofagent: |
David Bainbridge | 4974fcb | 2019-08-31 02:24:50 +0000 | [diff] [blame] | 81 | # repository: voltha/voltha-ofagent |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 82 | # tag: 2.1.1 |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 83 | # rw_core: |
David Bainbridge | 4974fcb | 2019-08-31 02:24:50 +0000 | [diff] [blame] | 84 | # repository: voltha/voltha-rw-core |
David Bainbridge | 90fd8e3 | 2019-08-21 23:32:47 +0000 | [diff] [blame] | 85 | # tag: 2.1.1 |
David Bainbridge | e10f6d5 | 2019-07-25 00:28:13 +0000 | [diff] [blame] | 86 | |
David Bainbridge | fce8af4 | 2020-03-17 12:50:39 -0700 | [diff] [blame] | 87 | deployments: |
| 88 | etcdOperator: true |
| 89 | backupOperator: true |
| 90 | restoreOperator: true |
| 91 | |
| 92 | voltha-etcd-cluster: |
| 93 | clusterSize: 3 |
| 94 | autoCompactionRetention: 1 |
| 95 | |
| 96 | kafka: |
| 97 | configurationOverrides: |
| 98 | "default.replication.factor": 3 |
| 99 | "offsets.topic.replication.factor": 3 |
| 100 | replicas: 3 |
| 101 | |
David K. Bainbridge | 4ecc126 | 2019-07-01 13:39:11 -0700 | [diff] [blame] | 102 | onos_env: |
| 103 | - name: POD_IP |
| 104 | valueFrom: |
| 105 | fieldRef: |
| 106 | fieldPath: status.podIP |
| 107 | - name: NAMESPACE |
| 108 | valueFrom: |
| 109 | fieldRef: |
| 110 | fieldPath: metadata.namespace |
| 111 | - name: ONOS_APPS |
| 112 | value: "drivers,openflow-base,hostprovider" |
| 113 | |
David K. Bainbridge | f1c8f4c | 2019-07-01 14:30:38 -0700 | [diff] [blame] | 114 | # Customization for BBSIM |
| 115 | kafka_broker: 'voltha-kafka.voltha.svc.cluster.local:9092' |
Matteo Scandolo | d267bb9 | 2020-02-13 10:47:44 -0800 | [diff] [blame] | 116 | pon: 1 |
| 117 | onu: 1 |
Matteo Scandolo | 38b98ce | 2019-11-04 07:57:42 -0800 | [diff] [blame] | 118 | auth: true |
| 119 | dhcp: true |
David Bainbridge | 4974fcb | 2019-08-31 02:24:50 +0000 | [diff] [blame] | 120 | |
| 121 | # SHOCK THE MONKEY OR LET LOSE THE DOGS OF WAR |
| 122 | # The VOLTHA charts have support for adding extra labels to deployments and |
| 123 | # pods. These extra labels can be used to integrate with other utilities |
| 124 | # such as kube-monkey to add a bit of chaos to the cluster. Below are some |
| 125 | # settings that can be uncommented to opt-in VOLTHA deployments/pods to |
| 126 | # kube-monkey. For example, if you want ALL deployments and pods to opt-in |
| 127 | # then uncomment the `extra_deployment_labels` and `extra_pod_label` blocks. |
| 128 | # If you want to be more selected then comment the blocks that pertain to the |
| 129 | # targets you care about. |
| 130 | |
| 131 | #extra_deployment_labels: |
| 132 | # kube-monkey/enabled: enabled |
| 133 | # kube-monkey/identifier: monkey-victim |
| 134 | # kube-monkey/mtbf: 1 |
| 135 | # kube-monkey/kill-mode: fixed |
| 136 | # kube-monkey/kill-value: 1 |
| 137 | # |
| 138 | #extra_pod_labels: |
| 139 | # kube-monkey/enabled: enabled |
| 140 | # kube-monkey/identifier: monkey-victim |
| 141 | # kube-monkey/mtbf: 1 |
| 142 | # kube-monkey/kill-mode: fixed |
| 143 | # kube-monkey/kill-value: 1 |
| 144 | # |
| 145 | #rw_core_deployment_labels: |
| 146 | # kube-monkey/enabled: enabled |
| 147 | # kube-monkey/identifier: monkey-victim |
| 148 | # kube-monkey/mtbf: 1 |
| 149 | # kube-monkey/kill-mode: fixed |
| 150 | # kube-monkey/kill-value: 1 |
| 151 | # |
| 152 | #rw_core_pod_labels: |
| 153 | # kube-monkey/enabled: enabled |
| 154 | # kube-monkey/identifier: monkey-victim |
| 155 | # kube-monkey/mtbf: 1 |
| 156 | # kube-monkey/kill-mode: fixed |
| 157 | # kube-monkey/kill-value: 1 |
| 158 | # |
David Bainbridge | fce8af4 | 2020-03-17 12:50:39 -0700 | [diff] [blame] | 159 | #ofagent_deployment_labels: |
David Bainbridge | 4974fcb | 2019-08-31 02:24:50 +0000 | [diff] [blame] | 160 | # kube-monkey/enabled: enabled |
| 161 | # kube-monkey/identifier: monkey-victim |
| 162 | # kube-monkey/mtbf: 1 |
| 163 | # kube-monkey/kill-mode: fixed |
| 164 | # kube-monkey/kill-value: 1 |
| 165 | # |
David Bainbridge | fce8af4 | 2020-03-17 12:50:39 -0700 | [diff] [blame] | 166 | #ofagent_pod_labels: |
David Bainbridge | 4974fcb | 2019-08-31 02:24:50 +0000 | [diff] [blame] | 167 | # kube-monkey/enabled: enabled |
| 168 | # kube-monkey/identifier: monkey-victim |
| 169 | # kube-monkey/mtbf: 1 |
| 170 | # kube-monkey/kill-mode: fixed |
| 171 | # kube-monkey/kill-value: 1 |
| 172 | # |
| 173 | #openolt_deployment_labels: |
| 174 | # kube-monkey/enabled: enabled |
| 175 | # kube-monkey/identifier: monkey-victim |
| 176 | # kube-monkey/mtbf: 1 |
| 177 | # kube-monkey/kill-mode: fixed |
| 178 | # kube-monkey/kill-value: 1 |
| 179 | # |
| 180 | #openolt_pod_labels: |
| 181 | # kube-monkey/enabled: enabled |
| 182 | # kube-monkey/identifier: monkey-victim |
| 183 | # kube-monkey/mtbf: 1 |
| 184 | # kube-monkey/kill-mode: fixed |
| 185 | # kube-monkey/kill-value: 1 |
| 186 | # |
| 187 | #openonu_deployment_labels: |
| 188 | # kube-monkey/enabled: enabled |
| 189 | # kube-monkey/identifier: monkey-victim |
| 190 | # kube-monkey/mtbf: 1 |
| 191 | # kube-monkey/kill-mode: fixed |
| 192 | # kube-monkey/kill-value: 1 |
| 193 | # |
| 194 | #openonu_pod_labels: |
| 195 | # kube-monkey/enabled: enabled |
| 196 | # kube-monkey/identifier: monkey-victim |
| 197 | # kube-monkey/mtbf: 1 |
| 198 | # kube-monkey/kill-mode: fixed |
| 199 | # kube-monkey/kill-value: 1 |
| 200 | # |
| 201 | #simolt_deployment_labels: |
| 202 | # kube-monkey/enabled: enabled |
| 203 | # kube-monkey/identifier: monkey-victim |
| 204 | # kube-monkey/mtbf: 1 |
| 205 | # kube-monkey/kill-mode: fixed |
| 206 | # kube-monkey/kill-value: 1 |
| 207 | # |
| 208 | #simolt_pod_labels: |
| 209 | # kube-monkey/enabled: enabled |
| 210 | # kube-monkey/identifier: monkey-victim |
| 211 | # kube-monkey/mtbf: 1 |
| 212 | # kube-monkey/kill-mode: fixed |
| 213 | # kube-monkey/kill-value: 1 |
| 214 | # |
| 215 | #simonu_deployment_labels: |
| 216 | # kube-monkey/enabled: enabled |
| 217 | # kube-monkey/identifier: monkey-victim |
| 218 | # kube-monkey/mtbf: 1 |
| 219 | # kube-monkey/kill-mode: fixed |
| 220 | # kube-monkey/kill-value: 1 |
| 221 | # |
| 222 | #simonu_pod_labels: |
| 223 | # kube-monkey/enabled: enabled |
| 224 | # kube-monkey/identifier: monkey-victim |
| 225 | # kube-monkey/mtbf: 1 |
| 226 | # kube-monkey/kill-mode: fixed |
| 227 | # kube-monkey/kill-value: 1 |