blob: c8030984e1bcf189d6d5edb81fae7797103ab26a [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---
Holger Hildebrandtb67c3302020-02-25 13:48:59 +000015use_openonu_adapter_go: false
16
David Bainbridgecd30e542019-05-31 20:52:56 +000017# Default overrides
18defaults:
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080019 log_level: "WARN"
David Bainbridge5cb5d172019-07-24 02:30:19 +000020 image_registry: ""
Andy Bavier9a4566b2019-11-05 09:24:58 -070021 image_tag: ~
David Bainbridge5cb5d172019-07-24 02:30:19 +000022 image_org: "voltha/"
23 image_pullPolicy: "Always"
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070024 topics:
25 core_topic: "rwcore"
26 adapter_open_onu_topic: "brcm_openomci_onu"
27 adapter_open_olt_topic: "openolt"
David Bainbridgecd30e542019-05-31 20:52:56 +000028
David Bainbridge8595b3b2020-06-05 12:23:05 -070029# Default security context under which the containers run
30securityContext:
31 enabled: true
32 fsGroup: 1001
33 runAsUser: 1001
34 runAsGroup: 1001
35
David Bainbridgecd30e542019-05-31 20:52:56 +000036# Define connectivity to required services
37services:
38 kafka:
39 adapter:
David Bainbridge8595b3b2020-06-05 12:23:05 -070040 service: kafka
David Bainbridgecd30e542019-05-31 20:52:56 +000041 port: 9092
42 cluster:
David Bainbridge8595b3b2020-06-05 12:23:05 -070043 service: kafka
David Bainbridgecd30e542019-05-31 20:52:56 +000044 port: 9092
Matteo Scandoloe33ed152019-12-03 10:47:49 -080045
David Bainbridgecd30e542019-05-31 20:52:56 +000046 # Define connectivity to etcd
47 etcd:
David Bainbridge8595b3b2020-06-05 12:23:05 -070048 service: etcd
David Bainbridgecd30e542019-05-31 20:52:56 +000049 port: 2379
50
51# Define the recplica count for everything
52replicas:
53 adapter_open_onu: 1
54
Matteo Scandoloe33ed152019-12-03 10:47:49 -080055adapter_open_onu:
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080056 log_level: '{{ .Values.defaults.log_level }}'
Matteo Scandoloe33ed152019-12-03 10:47:49 -080057
David Bainbridgecd30e542019-05-31 20:52:56 +000058images:
59 adapter_open_onu:
David Bainbridge5cb5d172019-07-24 02:30:19 +000060 registry: '{{ .Values.defaults.image_registry }}'
61 repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter'
serkant.uluderyacb549df2020-03-29 16:19:13 -070062 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 +000063 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'
Holger Hildebrandtb67c3302020-02-25 13:48:59 +000064 adapter_open_onu_go:
65 repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter-go'
Matteo Scandolo4f6d59a2020-03-25 10:37:18 -070066 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 -070067 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'