blob: 0097619425287a770478de7d08878a9b20cf20f5 [file] [log] [blame]
Zack Williamsc6202fe2020-03-26 10:55:40 -07001---
David Bainbridgecd30e542019-05-31 20:52:56 +00002# Copyright 2019-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Holger Hildebrandtb67c3302020-02-25 13:48:59 +000016use_openonu_adapter_go: false
17
David Bainbridgecd30e542019-05-31 20:52:56 +000018# Default overrides
19defaults:
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080020 log_level: "WARN"
David Bainbridge5cb5d172019-07-24 02:30:19 +000021 image_registry: ""
Andy Bavier9a4566b2019-11-05 09:24:58 -070022 image_tag: ~
David Bainbridge5cb5d172019-07-24 02:30:19 +000023 image_org: "voltha/"
24 image_pullPolicy: "Always"
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070025 topics:
26 core_topic: "rwcore"
27 adapter_open_onu_topic: "brcm_openomci_onu"
28 adapter_open_olt_topic: "openolt"
David Bainbridgecd30e542019-05-31 20:52:56 +000029
30# Define connectivity to required services
31services:
32 kafka:
33 adapter:
34 service: voltha-kafka.voltha.svc.cluster.local
35 port: 9092
36 cluster:
37 service: voltha-kafka.voltha.svc.cluster.local
38 port: 9092
Matteo Scandoloe33ed152019-12-03 10:47:49 -080039
David Bainbridgecd30e542019-05-31 20:52:56 +000040 # Define connectivity to etcd
41 etcd:
42 service: voltha-etcd-cluster-client.voltha.svc.cluster.local
43 port: 2379
44
45# Define the recplica count for everything
46replicas:
47 adapter_open_onu: 1
48
Matteo Scandoloe33ed152019-12-03 10:47:49 -080049adapter_open_onu:
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080050 log_level: '{{ .Values.defaults.log_level }}'
Matteo Scandoloe33ed152019-12-03 10:47:49 -080051
David Bainbridgecd30e542019-05-31 20:52:56 +000052images:
53 adapter_open_onu:
David Bainbridge5cb5d172019-07-24 02:30:19 +000054 registry: '{{ .Values.defaults.image_registry }}'
55 repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter'
serkant.uluderyacb549df2020-03-29 16:19:13 -070056 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}2.4.0{{- end }}{{- else }}2.4.0{{- end }}'
David Bainbridge5cb5d172019-07-24 02:30:19 +000057 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'
Holger Hildebrandtb67c3302020-02-25 13:48:59 +000058 adapter_open_onu_go:
59 repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter-go'
Matteo Scandolo4f6d59a2020-03-25 10:37:18 -070060 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}master{{- end }}{{- else }}master{{- end }}'
Zack Williamsc6202fe2020-03-26 10:55:40 -070061 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'