blob: e2acb98312aa9b70dccbe3d12c65a0bbba04ec19 [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"
David Bainbridgecd30e542019-05-31 20:52:56 +000025
26# Define connectivity to required services
27services:
28 kafka:
29 adapter:
30 service: voltha-kafka.voltha.svc.cluster.local
31 port: 9092
32 cluster:
33 service: voltha-kafka.voltha.svc.cluster.local
34 port: 9092
Matteo Scandoloe33ed152019-12-03 10:47:49 -080035
David Bainbridgecd30e542019-05-31 20:52:56 +000036 # Define connectivity to etcd
37 etcd:
38 service: voltha-etcd-cluster-client.voltha.svc.cluster.local
39 port: 2379
40
41# Define the recplica count for everything
42replicas:
43 adapter_open_onu: 1
44
Matteo Scandoloe33ed152019-12-03 10:47:49 -080045adapter_open_onu:
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080046 log_level: '{{ .Values.defaults.log_level }}'
Matteo Scandoloe33ed152019-12-03 10:47:49 -080047
David Bainbridgecd30e542019-05-31 20:52:56 +000048images:
49 adapter_open_onu:
David Bainbridge5cb5d172019-07-24 02:30:19 +000050 registry: '{{ .Values.defaults.image_registry }}'
51 repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter'
Matteo Scandolo4f6d59a2020-03-25 10:37:18 -070052 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}2.3.6{{- end }}{{- else }}2.3.6{{- end }}'
David Bainbridge5cb5d172019-07-24 02:30:19 +000053 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'
Holger Hildebrandtb67c3302020-02-25 13:48:59 +000054 adapter_open_onu_go:
55 repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter-go'
Matteo Scandolo4f6d59a2020-03-25 10:37:18 -070056 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 -070057 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'