blob: 2f399be50f799f624fa35577eaf8ca355313d781 [file] [log] [blame]
David Bainbridgecd30e542019-05-31 20:52:56 +00001# 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 Bainbridge8595b3b2020-06-05 12:23:05 -070014---
Matteo Scandoload3ae992020-12-09 09:33:43 -080015use_openonu_adapter_go: true
Holger Hildebrandtb67c3302020-02-25 13:48:59 +000016
David Bainbridge2bdd4302020-06-09 17:13:18 -070017nameOverride: ~
18fullNameOverride: ~
19
David Bainbridgecd30e542019-05-31 20:52:56 +000020# Default overrides
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080021global:
22 stack_name: voltha
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080023 log_level: "WARN"
David Bainbridge5cb5d172019-07-24 02:30:19 +000024 image_registry: ""
Andy Bavier9a4566b2019-11-05 09:24:58 -070025 image_tag: ~
David Bainbridge5cb5d172019-07-24 02:30:19 +000026 image_org: "voltha/"
27 image_pullPolicy: "Always"
Girish Gowdra30e3ab02020-06-24 12:59:34 -070028 incremental_evto_update: False
Himani Chawla5a33c502020-09-25 13:08:33 +053029 # timeout for deadline for interadapter communication
30 # should be in format as expected by parseDuration golang.
31 max_timeout_interadapter_comm: "30s"
Andrea Campanella6838a802020-11-19 15:50:23 +010032 # kv store timeout
33 adapter_open_onu:
34 timeout: "5s"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080035 # Configure Log Correlation
36 log_correlation:
37 enabled: true
38 # Configure Tracing
39 tracing:
40 enabled: true
Holger Hildebrandt29c63c92021-02-05 14:58:50 +000041 # Configure Performance Metrics
Girish Gowdrae05c0182021-01-28 15:02:37 -080042 metrics:
43 enabled: true
Holger Hildebrandt29c63c92021-02-05 14:58:50 +000044 # Configure Mib Audit
45 mib_audit:
46 # configure "0s" to disable Mib Audit
47 interval: 0s
48
Matteo Scandolofcbb9252020-11-19 12:19:02 -080049
David Bainbridge8595b3b2020-06-05 12:23:05 -070050# Default security context under which the containers run
51securityContext:
52 enabled: true
53 fsGroup: 1001
54 runAsUser: 1001
55 runAsGroup: 1001
56
David Bainbridgecd30e542019-05-31 20:52:56 +000057# Define connectivity to required services
58services:
59 kafka:
60 adapter:
Matteo Scandolo1d80abd2021-01-28 11:30:12 -080061 address: kafka:9092
David Bainbridgecd30e542019-05-31 20:52:56 +000062 cluster:
Matteo Scandolo1d80abd2021-01-28 11:30:12 -080063 address: kafka:9092
Matteo Scandoloe33ed152019-12-03 10:47:49 -080064
David Bainbridgecd30e542019-05-31 20:52:56 +000065 # Define connectivity to etcd
66 etcd:
Matteo Scandolo1d80abd2021-01-28 11:30:12 -080067 address: etcd:2379
David Bainbridgecd30e542019-05-31 20:52:56 +000068
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080069 # Define Tracing Agent connection details
70 tracing_agent:
71 address: jaeger-agent:6831
72
Andrea Campanellaaa46d3f2021-01-19 09:19:02 +010073allowed_onu_vendors:
74 - OPEN
75 - ALCL
76 - BRCM
77 - TWSH
78 - ALPH
79 - ISKT
80 - SFAA
81 - BBSM
82 - SCOM
83 - ARPX
84 - DACM
85 - ERSN
86 - HWTC
87 - CIGG
88 - ADTN
89 - ARCA
90 - AVMG
91
David Bainbridgecd30e542019-05-31 20:52:56 +000092# Define the recplica count for everything
93replicas:
94 adapter_open_onu: 1
95
Matteo Scandoloe33ed152019-12-03 10:47:49 -080096adapter_open_onu:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080097 log_level: '{{ .Values.global.log_level }}'
98 incremental_evto_update: '{{ .Values.global.incremental_evto_update }}'
99 max_timeout_interadapter_comm: '{{ .Values.global.max_timeout_interadapter_comm }}'
100 kv_store_timeout: '{{ .Values.global.adapter_open_onu.timeout }}'
101 kv_store_data_prefix: 'service/{{ .Values.global.stack_name }}_voltha'
102 topics:
103 core_topic: "{{ .Values.global.stack_name }}_rwcore"
104 adapter_open_onu_topic: "{{ .Values.global.stack_name }}_brcm_openomci_onu"
Matteo Scandoloe33ed152019-12-03 10:47:49 -0800105
David Bainbridgecd30e542019-05-31 20:52:56 +0000106images:
107 adapter_open_onu:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800108 registry: '{{ .Values.global.image_registry }}'
109 repository: '{{ .Values.global.image_org }}voltha-openonu-adapter'
Andrea Campanellaaa46d3f2021-01-19 09:19:02 +0100110 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}2.7.0{{- end }}{{- else }}2.7.0{{- end }}'
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800111 pullPolicy: '{{ .Values.global.image_pullPolicy }}'
Holger Hildebrandtb67c3302020-02-25 13:48:59 +0000112 adapter_open_onu_go:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800113 registry: '{{ .Values.global.image_registry }}'
114 repository: '{{ .Values.global.image_org }}voltha-openonu-adapter-go'
Holger Hildebrandt29c63c92021-02-05 14:58:50 +0000115 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}1.2.1{{- end }}{{- else }}1.2.1{{- end }}'
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800116 pullPolicy: '{{ .Values.global.image_pullPolicy }}'