blob: eb4bbfeb23d8541c17ed2d5bfa28b537a137bc56 [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.
14
15---
16# Default overrides
17defaults:
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080018 log_level: "WARN"
David Bainbridge5cb5d172019-07-24 02:30:19 +000019 image_registry: ""
Andy Bavier9a4566b2019-11-05 09:24:58 -070020 image_tag: ~
David Bainbridge5cb5d172019-07-24 02:30:19 +000021 image_org: "voltha/"
22 image_pullPolicy: "Always"
David Bainbridgecd30e542019-05-31 20:52:56 +000023
24# Define connectivity to required services
25services:
26 kafka:
27 adapter:
28 service: voltha-kafka.voltha.svc.cluster.local
29 port: 9092
30 cluster:
31 service: voltha-kafka.voltha.svc.cluster.local
32 port: 9092
Matteo Scandoloe33ed152019-12-03 10:47:49 -080033
David Bainbridgecd30e542019-05-31 20:52:56 +000034 # Define connectivity to etcd
35 etcd:
36 service: voltha-etcd-cluster-client.voltha.svc.cluster.local
37 port: 2379
38
39# Define the recplica count for everything
40replicas:
41 adapter_open_onu: 1
42
Matteo Scandoloe33ed152019-12-03 10:47:49 -080043adapter_open_onu:
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080044 log_level: '{{ .Values.defaults.log_level }}'
Matteo Scandoloe33ed152019-12-03 10:47:49 -080045
David Bainbridgecd30e542019-05-31 20:52:56 +000046images:
47 adapter_open_onu:
David Bainbridge5cb5d172019-07-24 02:30:19 +000048 registry: '{{ .Values.defaults.image_registry }}'
49 repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter'
Andy Bavier9a4566b2019-11-05 09:24:58 -070050 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
David Bainbridge5cb5d172019-07-24 02:30:19 +000051 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'