blob: 08eb04eedfb23dfe0ddf122b27edae6867d04424 [file] [log] [blame]
Joey Armstrong6a104e92024-02-10 15:27:58 -05001# Copyright 2019-2024 Open Networking Foundation (ONF) and the ONF Contributors
David Bainbridgecd30e542019-05-31 20:52:56 +00002#
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---
Holger Hildebrandtb67c3302020-02-25 13:48:59 +000015
David Bainbridge2bdd4302020-06-09 17:13:18 -070016nameOverride: ~
17fullNameOverride: ~
18
David Bainbridgecd30e542019-05-31 20:52:56 +000019# Default overrides
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080020global:
khenaidoo15c53fb2021-08-09 13:56:27 -040021 voltha_release_name: voltha
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080022 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"
khenaidoo15c53fb2021-08-09 13:56:27 -040028 core_endpoint: "{{ .Values.global.voltha_release_name }}-{{ .Values.global.stack_name }}-core.{{ .Release.Namespace }}.svc:55558"
Girish Gowdra30e3ab02020-06-24 12:59:34 -070029 incremental_evto_update: False
Himani Chawla5a33c502020-09-25 13:08:33 +053030 # timeout for deadline for interadapter communication
31 # should be in format as expected by parseDuration golang.
32 max_timeout_interadapter_comm: "30s"
Holger Hildebrandtade635b2021-02-18 16:28:39 +000033 # timeout for ONU reconciling
34 max_timeout_reconciling: "10s"
Girish Gowdraa4535062021-03-09 13:21:58 -080035 # timeout for OMCI channel
Holger Hildebrandtbf70c6a2022-02-23 09:34:43 +000036 omci_timeout: "3s"
khenaidoo15c53fb2021-08-09 13:56:27 -040037 # timeout for RPC request
38 rpc_timeout: "10s"
Andrea Campanella6838a802020-11-19 15:50:23 +010039 # kv store timeout
40 adapter_open_onu:
41 timeout: "5s"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080042 # Configure Log Correlation
43 log_correlation:
44 enabled: true
45 # Configure Tracing
46 tracing:
47 enabled: true
Holger Hildebrandt29c63c92021-02-05 14:58:50 +000048 # Configure Performance Metrics
Girish Gowdrae05c0182021-01-28 15:02:37 -080049 metrics:
50 enabled: true
Holger Hildebrandt80d1f0a2022-06-24 07:53:59 +000051 # Configure Extended OMCI Support
52 extended_omci_support:
53 enabled: false
Holger Hildebrandt29c63c92021-02-05 14:58:50 +000054 # Configure Mib Audit
55 mib_audit:
56 # configure "0s" to disable Mib Audit
57 interval: 0s
Himani Chawlae3454912021-03-15 19:23:49 +053058 alarm_audit:
59 # configure "0s" to disable omci alarm audit
60 interval: 300s
Praneeth Kumar Nalmas5cd48d72024-04-17 10:37:40 +053061 # Configure reconciling by skipping onu configuration by default
62 skip_onu_config:
63 enabled: false
64
Holger Hildebrandt29c63c92021-02-05 14:58:50 +000065
khenaidoo15c53fb2021-08-09 13:56:27 -040066# Probe values
67probe:
68 liveness:
69 initial_delay_seconds: 3
70 period_seconds: 3
71 readiness:
72 initial_delay_seconds: 3
73 period_seconds: 3
Matteo Scandolofcbb9252020-11-19 12:19:02 -080074
David Bainbridge8595b3b2020-06-05 12:23:05 -070075# Default security context under which the containers run
76securityContext:
77 enabled: true
78 fsGroup: 1001
79 runAsUser: 1001
80 runAsGroup: 1001
81
David Bainbridgecd30e542019-05-31 20:52:56 +000082# Define connectivity to required services
83services:
84 kafka:
David Bainbridgecd30e542019-05-31 20:52:56 +000085 cluster:
Matteo Scandolo1d80abd2021-01-28 11:30:12 -080086 address: kafka:9092
Matteo Scandoloe33ed152019-12-03 10:47:49 -080087
David Bainbridgecd30e542019-05-31 20:52:56 +000088 # Define connectivity to etcd
abhaycd295062024-12-12 11:05:07 +053089 kvstore:
90 # type: etcd, redis or redis-sentinel
91 type: etcd
Matteo Scandolo1d80abd2021-01-28 11:30:12 -080092 address: etcd:2379
David Bainbridgecd30e542019-05-31 20:52:56 +000093
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080094 # Define Tracing Agent connection details
95 tracing_agent:
96 address: jaeger-agent:6831
97
Andrea Campanellaaa46d3f2021-01-19 09:19:02 +010098allowed_onu_vendors:
99 - OPEN
100 - ALCL
101 - BRCM
102 - TWSH
103 - ALPH
104 - ISKT
105 - SFAA
106 - BBSM
107 - SCOM
108 - ARPX
109 - DACM
110 - ERSN
111 - HWTC
112 - CIGG
113 - ADTN
114 - ARCA
115 - AVMG
Andrea Campanella6f9653e2021-11-15 10:48:19 -0800116 - ZYWN
Mahir Gunyel7e04d072023-12-22 09:22:56 -0800117 - ZYXE
118 - ZYSG
Andrea Campanellaaa46d3f2021-01-19 09:19:02 +0100119
Andrea Campanella7739aae2021-02-11 11:00:03 +0100120# Expose the golang pprof webserver, if enabled
121profiler:
122 enabled: false
123
David Bainbridgecd30e542019-05-31 20:52:56 +0000124# Define the recplica count for everything
125replicas:
126 adapter_open_onu: 1
127
Matteo Scandoloe33ed152019-12-03 10:47:49 -0800128adapter_open_onu:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800129 log_level: '{{ .Values.global.log_level }}'
130 incremental_evto_update: '{{ .Values.global.incremental_evto_update }}'
131 max_timeout_interadapter_comm: '{{ .Values.global.max_timeout_interadapter_comm }}'
Holger Hildebrandtade635b2021-02-18 16:28:39 +0000132 max_timeout_reconciling: '{{ .Values.global.max_timeout_reconciling }}'
Girish Gowdraa4535062021-03-09 13:21:58 -0800133 omci_timeout: '{{ .Values.global.omci_timeout }}'
khenaidoo15c53fb2021-08-09 13:56:27 -0400134 rpc_timeout: '{{ .Values.global.rpc_timeout }}'
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800135 kv_store_timeout: '{{ .Values.global.adapter_open_onu.timeout }}'
136 kv_store_data_prefix: 'service/{{ .Values.global.stack_name }}_voltha'
Himani Chawlae3454912021-03-15 19:23:49 +0530137 alarm_audit_interval: '{{ .Values.global.alarm_audit.interval }}'
Matteo Scandolo60b9c252021-06-10 17:21:08 +0200138 uni_port_mask: "0x0001"
khenaidoo15c53fb2021-08-09 13:56:27 -0400139 endpoints:
140 address: '{{ template "fullname" . }}-api'
141 port: 50060
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800142 topics:
Matteo Scandolo06ee58c2021-05-26 15:28:51 -0700143 event_topic: "voltha.events"
Matteo Scandoloe33ed152019-12-03 10:47:49 -0800144
David Bainbridgecd30e542019-05-31 20:52:56 +0000145images:
Holger Hildebrandtb67c3302020-02-25 13:48:59 +0000146 adapter_open_onu_go:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800147 registry: '{{ .Values.global.image_registry }}'
148 repository: '{{ .Values.global.image_org }}voltha-openonu-adapter-go'
Matteo Scandolo14976fd2021-03-29 18:33:05 -0700149 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800150 pullPolicy: '{{ .Values.global.image_pullPolicy }}'
Andrey Pozolotin7e928a92021-08-13 12:37:24 +0200151
152resources:
153 requests:
154 cpu: 0.5
155 memory: 512Mi
156 limits:
157 cpu: ~
158 memory: ~
Andrey Pozolotinda75c922021-08-24 17:41:08 +0200159
160# Define scheduling rules for stack pods
161scheduleRules:
162 preferStackPodsOnSameNode: false
163 preferStacksOnDifferentNodes: false