blob: cc774c7c200ae440ac7285f13dbf67a2ccb77791 [file] [log] [blame]
David Bainbridge2f9b76f2019-05-15 13:48:11 -07001# 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 Bainbridgecd30e542019-05-31 20:52:56 +000016# Default overrides
17defaults:
18 image_registry:
19 image_tag:
20 image_org:
21 image_pullPolicy:
David Bainbridge2f9b76f2019-05-15 13:48:11 -070022
23# Define connectivity to required services
24services:
25 kafka:
26 adapter:
27 service: voltha-kafka.voltha.svc.cluster.local
28 port: 9092
29 cluster:
30 service: voltha-kafka.voltha.svc.cluster.local
31 port: 9092
32
33 # Define connectivity to etcd
34 etcd:
35 service: voltha-etcd-cluster-client.voltha.svc.cluster.local
36 port: 2379
37
38# Define the recplica count for everything
39replicas:
40 adapter_simulated_olt: 1
41 adapter_simulated_onu: 1
42 onu: 1
43
44images:
45 adapter_simulated_olt:
David Bainbridgecd30e542019-05-31 20:52:56 +000046 registry: '{{ .Values.defaults.image_registry | default "" }}'
47 repository: '{{ .Values.defaults.image_org | default "voltha/" }}voltha-adapter-simulated-olt'
48 tag: '{{ .Values.defaults.image_tag | default .Chart.AppVersion }}'
49 pullPolicy: '{{ .Values.defaults.image_pullPolicy | default "Always" }}'
David Bainbridge2f9b76f2019-05-15 13:48:11 -070050
51 adapter_simulated_onu:
David Bainbridgecd30e542019-05-31 20:52:56 +000052 registry: '{{ .Values.defaults.image_registry | default "" }}'
53 repository: '{{ .Values.defaults.image_org | default "voltha/" }}voltha-adapter-simulated-onu'
54 tag: '{{ .Values.defaults.image_tag | default .Chart.AppVersion }}'
55 pullPolicy: '{{ .Values.defaults.image_pullPolicy | default "Always" }}'