blob: 5aaabb7d3f4333faa71af9a2e29cb08ada99bb26 [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
21defaults:
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"
Girish Gowdra30e3ab02020-06-24 12:59:34 -070027 incremental_evto_update: False
Himani Chawla5a33c502020-09-25 13:08:33 +053028 # timeout for deadline for interadapter communication
29 # should be in format as expected by parseDuration golang.
30 max_timeout_interadapter_comm: "30s"
Andrea Campanella6838a802020-11-19 15:50:23 +010031 # kv store timeout
32 adapter_open_onu:
33 timeout: "5s"
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070034 topics:
35 core_topic: "rwcore"
36 adapter_open_onu_topic: "brcm_openomci_onu"
37 adapter_open_olt_topic: "openolt"
David Bainbridgecd30e542019-05-31 20:52:56 +000038
Matteo Scandolofcbb9252020-11-19 12:19:02 -080039 # Define prefix path for etcd
40 # If you're running multiple voltha stacks the this value
41 # should be unique across the stacks.
42 kv_store_data_prefix: "service/voltha"
43
David Bainbridge8595b3b2020-06-05 12:23:05 -070044# Default security context under which the containers run
45securityContext:
46 enabled: true
47 fsGroup: 1001
48 runAsUser: 1001
49 runAsGroup: 1001
50
David Bainbridgecd30e542019-05-31 20:52:56 +000051# Define connectivity to required services
52services:
53 kafka:
54 adapter:
David Bainbridge8595b3b2020-06-05 12:23:05 -070055 service: kafka
David Bainbridgecd30e542019-05-31 20:52:56 +000056 port: 9092
57 cluster:
David Bainbridge8595b3b2020-06-05 12:23:05 -070058 service: kafka
David Bainbridgecd30e542019-05-31 20:52:56 +000059 port: 9092
Matteo Scandoloe33ed152019-12-03 10:47:49 -080060
David Bainbridgecd30e542019-05-31 20:52:56 +000061 # Define connectivity to etcd
62 etcd:
David Bainbridge8595b3b2020-06-05 12:23:05 -070063 service: etcd
David Bainbridgecd30e542019-05-31 20:52:56 +000064 port: 2379
65
66# Define the recplica count for everything
67replicas:
68 adapter_open_onu: 1
69
Matteo Scandoloe33ed152019-12-03 10:47:49 -080070adapter_open_onu:
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080071 log_level: '{{ .Values.defaults.log_level }}'
Girish Gowdra30e3ab02020-06-24 12:59:34 -070072 incremental_evto_update: '{{ .Values.defaults.incremental_evto_update }}'
Himani Chawla5a33c502020-09-25 13:08:33 +053073 max_timeout_interadapter_comm: '{{ .Values.defaults.max_timeout_interadapter_comm }}'
Andrea Campanella6838a802020-11-19 15:50:23 +010074 kv_store_timeout: '{{ .Values.defaults.adapter_open_onu.timeout }}'
Matteo Scandoloe33ed152019-12-03 10:47:49 -080075
David Bainbridgecd30e542019-05-31 20:52:56 +000076images:
77 adapter_open_onu:
David Bainbridge5cb5d172019-07-24 02:30:19 +000078 registry: '{{ .Values.defaults.image_registry }}'
79 repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter'
Matteo Scandolo10adea22020-12-15 10:14:18 -100080 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}2.6.0{{- end }}{{- else }}2.6.0{{- end }}'
David Bainbridge5cb5d172019-07-24 02:30:19 +000081 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'
Holger Hildebrandtb67c3302020-02-25 13:48:59 +000082 adapter_open_onu_go:
Matteo Scandoloefcb4392020-11-17 10:21:02 -080083 registry: '{{ .Values.defaults.image_registry }}'
Holger Hildebrandtb67c3302020-02-25 13:48:59 +000084 repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter-go'
Matteo Scandolo2ca62052020-12-14 11:25:02 -100085 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}1.0.0{{- end }}{{- else }}1.0.0{{- end }}'
Zack Williamsc6202fe2020-03-26 10:55:40 -070086 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'