blob: 8c88b4c2eedab84ec7100e6c009c0859a549306e [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---
David Bainbridge2bdd4302020-06-09 17:13:18 -070015nameOverride: ~
16fullNameOverride: ~
David Bainbridgecd30e542019-05-31 20:52:56 +000017
David Bainbridgecd30e542019-05-31 20:52:56 +000018# Default overrides
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080019global:
khenaidoo15c53fb2021-08-09 13:56:27 -040020 voltha_release_name: voltha
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080021 stack_name: voltha
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080022 log_level: "WARN"
David Bainbridge5cb5d172019-07-24 02:30:19 +000023 image_registry: ""
Andy Bavier9a4566b2019-11-05 09:24:58 -070024 image_tag: ~
David Bainbridge5cb5d172019-07-24 02:30:19 +000025 image_org: "voltha/"
26 image_pullPolicy: "Always"
khenaidoo15c53fb2021-08-09 13:56:27 -040027 core_endpoint: "{{ .Values.global.voltha_release_name }}-{{ .Values.global.stack_name }}-core.{{ .Release.Namespace }}.svc:55558"
Andrea Campanella6838a802020-11-19 15:50:23 +010028 adapter_open_olt:
29 timeout: "5s"
Girish Gowdrae8c44bd2021-03-17 10:30:44 -070030 heartbeat_check_interval: "15s"
31 heartbeat_fail_interval: "31s"
khenaidoo15c53fb2021-08-09 13:56:27 -040032 # timeout for RPC request
33 rpc_timeout: "10s"
David Bainbridge8595b3b2020-06-05 12:23:05 -070034
kesavand00d081e2020-08-31 11:47:44 +053035 #enable OMCC encryption
36 omcc_encryption: false
Gamze Abakaba10c7b2020-12-17 14:37:25 +000037 #enable ONU stats
38 enable_onu_stats: false
39 #enable GEM stats
40 enable_gem_stats: false
David Bainbridgecd30e542019-05-31 20:52:56 +000041
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080042 # Configure Log Correlation
43 log_correlation:
44 enabled: true
45
46 # Configure Tracing
47 tracing:
48 enabled: true
49
khenaidoo15c53fb2021-08-09 13:56:27 -040050# Probe values
51probe:
52 liveness:
53 initial_delay_seconds: 3
54 period_seconds: 3
55 readiness:
56 initial_delay_seconds: 3
57 period_seconds: 3
58
David Bainbridge8595b3b2020-06-05 12:23:05 -070059# Default security context under which the containers run
60securityContext:
61 enabled: true
62 fsGroup: 1001
63 runAsUser: 1001
64 runAsGroup: 1001
65
Girish Gowdra12231512020-06-29 13:00:48 -070066# Node Affinity Configuration
67nodeAffinityConfig:
68 enabled: false
69 node_label_key: "in-band"
70 node_label_value: "yes"
71
David Bainbridgecd30e542019-05-31 20:52:56 +000072# Define connectivity to required services
73services:
74 kafka:
David Bainbridgecd30e542019-05-31 20:52:56 +000075 cluster:
Neha Sharma1a3da1c2020-06-24 13:12:48 +000076 address: kafka:9092
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080077
David Bainbridgecd30e542019-05-31 20:52:56 +000078 # Define connectivity to etcd
79 etcd:
Neha Sharma1a3da1c2020-06-24 13:12:48 +000080 address: etcd:2379
David Bainbridgecd30e542019-05-31 20:52:56 +000081
Girish Kumar877af922020-07-31 06:05:32 +000082 # Define Tracing Agent connection details
83 tracing_agent:
84 address: jaeger-agent:6831
85
Matteo Scandoloe9a01f72020-05-05 09:33:59 -070086# Expose the golang pprof webserver, if enabled
87profiler:
88 enabled: false
89
Girish Gowdrae8c44bd2021-03-17 10:30:44 -070090# Define the replica count for everything
David Bainbridgecd30e542019-05-31 20:52:56 +000091replicas:
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070092 current_replica: 1
93 total_replica: 1
David Bainbridgecd30e542019-05-31 20:52:56 +000094
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080095adapter_open_olt:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080096 log_level: '{{ .Values.global.log_level }}'
97 kv_store_timeout: '{{ .Values.global.adapter_open_olt.timeout }}'
98 kv_store_data_prefix: 'service/{{ .Values.global.stack_name }}_voltha'
Girish Gowdrae8c44bd2021-03-17 10:30:44 -070099 heartbeat_check_interval: '{{ .Values.global.adapter_open_olt.heartbeat_check_interval }}'
100 heartbeat_fail_interval: '{{ .Values.global.adapter_open_olt.heartbeat_fail_interval }}'
khenaidoo15c53fb2021-08-09 13:56:27 -0400101 rpc_timeout: '{{ .Values.global.adapter_open_olt.rpc_timeout }}'
102 endpoints:
103 # core_endpoint: '{{ .Values.global.adapter_open_olt.core_endpoint }}'
104 # adapter_endpoint: '{{ template "fullname" . }}-api:55560'
105 address: '{{ template "fullname" . }}-api'
106 port: 50060
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800107 topics:
Matteo Scandolo06ee58c2021-05-26 15:28:51 -0700108 event_topic: "voltha.events"
Matteo Scandolo1d7ab922019-12-10 13:41:23 -0800109
David Bainbridgecd30e542019-05-31 20:52:56 +0000110images:
111 adapter_open_olt:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800112 registry: '{{ .Values.global.image_registry }}'
113 repository: '{{ .Values.global.image_org }}voltha-openolt-adapter'
114 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
115 pullPolicy: '{{ .Values.global.image_pullPolicy | default "Always" }}'
Andrey Pozolotin7e928a92021-08-13 12:37:24 +0200116
117resources:
118 requests:
119 cpu: 0.5
120 memory: 256Mi
121 limits:
122 cpu: ~
123 memory: ~
Andrey Pozolotinda75c922021-08-24 17:41:08 +0200124
125# Define scheduling rules for stack pods
126scheduleRules:
127 preferStackPodsOnSameNode: false
128 preferStacksOnDifferentNodes: false