blob: 7610fa4d1b310252ab355dda3e334c9cc61d4363 [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---
David Bainbridge6a43d8d2019-06-18 19:09:09 +000016use_go: false
17
David Bainbridgecd30e542019-05-31 20:52:56 +000018# Default overrides
19defaults:
20 image_registry:
21 image_tag:
22 image_org:
23 image_pullPolicy:
24
25# Define connectivity to required services
26services:
27 kafka:
28 adapter:
29 service: voltha-kafka.voltha.svc.cluster.local
30 port: 9092
31 cluster:
32 service: voltha-kafka.voltha.svc.cluster.local
33 port: 9092
34
35 # Define connectivity to etcd
36 etcd:
37 service: voltha-etcd-cluster-client.voltha.svc.cluster.local
38 port: 2379
39
40# Define the recplica count for everything
41replicas:
42 adapter_open_olt: 1
43
44images:
45 adapter_open_olt:
46 registry: '{{ .Values.defaults.image_registry | default "" }}'
47 repository: '{{ .Values.defaults.image_org | default "voltha/" }}voltha-openolt-adapter'
David Bainbridge6a43d8d2019-06-18 19:09:09 +000048 tag_go: '{{ .Values.defaults.image_tag | default "master-go" }}'
David Bainbridgecd30e542019-05-31 20:52:56 +000049 tag: '{{ .Values.defaults.image_tag | default .Chart.AppVersion }}'
50 pullPolicy: '{{ .Values.defaults.image_pullPolicy | default "Always" }}'