blob: affb83989df0938cfe7eda918172f2950e46161c [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:
David Bainbridge5cb5d172019-07-24 02:30:19 +000020 image_registry: ""
21 image_tag: "::DEFAULT::"
22 image_org: "voltha/"
23 image_pullPolicy: "Always"
24 default_go_image_tag: "master-go"
25 default_py_image_tag: '{{ .Chart.AppVersion }}'
David Bainbridgecd30e542019-05-31 20:52:56 +000026
27# Define connectivity to required services
28services:
29 kafka:
30 adapter:
31 service: voltha-kafka.voltha.svc.cluster.local
32 port: 9092
33 cluster:
34 service: voltha-kafka.voltha.svc.cluster.local
35 port: 9092
36
37 # Define connectivity to etcd
38 etcd:
39 service: voltha-etcd-cluster-client.voltha.svc.cluster.local
40 port: 2379
41
42# Define the recplica count for everything
43replicas:
44 adapter_open_olt: 1
45
46images:
47 adapter_open_olt:
David Bainbridge5cb5d172019-07-24 02:30:19 +000048 registry: '{{ .Values.defaults.image_registry }}'
49 repository: '{{ .Values.defaults.image_org }}voltha-openolt-adapter'
50 tag_go: '{{ .Values.defaults.image_tag }}'
51 tag: '{{ .Values.defaults.image_tag }}'
David Bainbridgecd30e542019-05-31 20:52:56 +000052 pullPolicy: '{{ .Values.defaults.image_pullPolicy | default "Always" }}'