David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 1 | # Copyright 2019-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. |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 14 | --- |
David Bainbridge | 2bdd430 | 2020-06-09 17:13:18 -0700 | [diff] [blame] | 15 | nameOverride: ~ |
| 16 | fullNameOverride: ~ |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 17 | |
David Bainbridge | 60332ae | 2019-10-11 15:04:13 +0000 | [diff] [blame] | 18 | # Default Values |
| 19 | # The following are the default values used for every container in the |
| 20 | # template. |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 21 | defaults: |
Matteo Scandolo | 1d7ab92 | 2019-12-10 13:41:23 -0800 | [diff] [blame] | 22 | log_level: "WARN" |
David Bainbridge | 5cb5d17 | 2019-07-24 02:30:19 +0000 | [diff] [blame] | 23 | image_registry: '' |
Kent Hagerman | 42101a8 | 2019-06-12 12:52:39 -0400 | [diff] [blame] | 24 | image_org: "voltha/" |
David Bainbridge | 60332ae | 2019-10-11 15:04:13 +0000 | [diff] [blame] | 25 | image_tag: ~ |
Kent Hagerman | 42101a8 | 2019-06-12 12:52:39 -0400 | [diff] [blame] | 26 | image_pullPolicy: "Always" |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 27 | rw_core: |
Matteo Scandolo | 41e9c13 | 2020-06-04 15:11:02 -0700 | [diff] [blame] | 28 | timeout: "10s" |
serkant.uluderya | f1b8cc7 | 2020-05-13 23:26:51 -0700 | [diff] [blame] | 29 | topics: |
| 30 | core_topic: "rwcore" |
Matteo Scandolo | 41e9c13 | 2020-06-04 15:11:02 -0700 | [diff] [blame] | 31 | |
serkant.uluderya | f1b8cc7 | 2020-05-13 23:26:51 -0700 | [diff] [blame] | 32 | # Define prefix path for etcd |
Matteo Scandolo | 41e9c13 | 2020-06-04 15:11:02 -0700 | [diff] [blame] | 33 | # If you're running multiple voltha stacks the this value |
serkant.uluderya | f1b8cc7 | 2020-05-13 23:26:51 -0700 | [diff] [blame] | 34 | # should be unique across the stacks. |
| 35 | kv_store_data_prefix: "service/voltha" |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 36 | |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 37 | # Default security context under which the containers run |
David Bainbridge | 16b19cc | 2020-05-29 11:50:44 -0700 | [diff] [blame] | 38 | securityContext: |
| 39 | enabled: true |
| 40 | fsGroup: 1001 |
| 41 | runAsUser: 1001 |
| 42 | runAsGroup: 1001 |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 43 | |
| 44 | # Define connectivity to services on which VOLTHA depends |
| 45 | services: |
| 46 | kafka: |
| 47 | adapter: |
David Bainbridge | 16b19cc | 2020-05-29 11:50:44 -0700 | [diff] [blame] | 48 | service: kafka |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 49 | port: 9092 |
| 50 | cluster: |
David Bainbridge | 16b19cc | 2020-05-29 11:50:44 -0700 | [diff] [blame] | 51 | service: kafka |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 52 | port: 9092 |
| 53 | |
| 54 | # Define connectivity to etcd |
| 55 | etcd: |
David Bainbridge | 16b19cc | 2020-05-29 11:50:44 -0700 | [diff] [blame] | 56 | service: etcd |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 57 | port: 2379 |
| 58 | |
Jonathan Hart | 3980b74 | 2020-04-20 11:00:54 -0700 | [diff] [blame] | 59 | # Define the list of controllers to connect to |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 60 | controller: |
David Bainbridge | 16b19cc | 2020-05-29 11:50:44 -0700 | [diff] [blame] | 61 | - service: onos-openflow |
Jonathan Hart | 3980b74 | 2020-04-20 11:00:54 -0700 | [diff] [blame] | 62 | port: 6653 |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 63 | |
Matteo Scandolo | e9a01f7 | 2020-05-05 09:33:59 -0700 | [diff] [blame] | 64 | # Expose the golang pprof webserver, if enabled |
| 65 | profiler: |
| 66 | enabled: false |
| 67 | |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 68 | # Define the recplica count for everything |
| 69 | replicas: |
| 70 | # For R/W cores the templates translate the number of replicas |
| 71 | # into the number of RW core pairs with two pods per pair |
| 72 | rw_core: 1 |
| 73 | |
| 74 | # For everything else replicas are replicas |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 75 | ofagent: 1 |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 76 | |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 77 | rw_core: |
David Bainbridge | 50cb1ef | 2019-07-23 22:36:17 +0000 | [diff] [blame] | 78 | log_level: '{{ .Values.defaults.log_level }}' |
Kent Hagerman | 42101a8 | 2019-06-12 12:52:39 -0400 | [diff] [blame] | 79 | core_timeout: '{{ .Values.defaults.rw_core.timeout }}' |
| 80 | timeout_long_request: '{{ .Values.defaults.rw_core.timeout }}' |
| 81 | timeout_request: '{{ .Values.defaults.rw_core.timeout }}' |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 82 | |
David K. Bainbridge | 707022f | 2020-01-23 14:15:07 -0800 | [diff] [blame] | 83 | ofagent: |
hwchiu | ea1fb4d | 2020-02-11 19:50:14 +0000 | [diff] [blame] | 84 | log_level: '{{ .Values.defaults.log_level }}' |
David K. Bainbridge | 707022f | 2020-01-23 14:15:07 -0800 | [diff] [blame] | 85 | |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 86 | # Define Docker images to be used |
| 87 | images: |
David Bainbridge | 60018ec | 2020-06-02 13:32:30 -0700 | [diff] [blame] | 88 | ofagent: |
Matteo Scandolo | ccea27b | 2020-03-18 15:25:05 -0700 | [diff] [blame] | 89 | registry: '{{ .Values.defaults.image_registry }}' |
Matteo Scandolo | fc5661e | 2020-03-23 11:38:15 -0700 | [diff] [blame] | 90 | repository: '{{ .Values.defaults.image_org }}voltha-ofagent-go' |
Neha Sharma | 7d3d6be | 2020-05-14 20:02:17 +0000 | [diff] [blame] | 91 | tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}1.2.1{{- end }}{{- else }}1.2.1{{- end }}' |
Matteo Scandolo | ccea27b | 2020-03-18 15:25:05 -0700 | [diff] [blame] | 92 | pullPolicy: '{{ .Values.defaults.image_pullPolicy }}' |
| 93 | |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 94 | rw_core: |
Kent Hagerman | 42101a8 | 2019-06-12 12:52:39 -0400 | [diff] [blame] | 95 | registry: '{{ .Values.defaults.image_registry }}' |
| 96 | repository: '{{ .Values.defaults.image_org }}voltha-rw-core' |
Neha Sharma | 7d3d6be | 2020-05-14 20:02:17 +0000 | [diff] [blame] | 97 | tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}2.4.2{{- end }}{{- else }}2.4.2{{- end }}' |
Kent Hagerman | 42101a8 | 2019-06-12 12:52:39 -0400 | [diff] [blame] | 98 | pullPolicy: '{{ .Values.defaults.image_pullPolicy }}' |