blob: 2dd877fa9b004da65b63dae4028209943701c9ee [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---
16# Globally define a registry
17registry: ''
18
19# Define connectivity to required services
20services:
21 kafka:
22 adapter:
23 service: voltha-kafka.voltha.svc.cluster.local
24 port: 9092
25 cluster:
26 service: voltha-kafka.voltha.svc.cluster.local
27 port: 9092
28
29 # Define connectivity to etcd
30 etcd:
31 service: voltha-etcd-cluster-client.voltha.svc.cluster.local
32 port: 2379
33
34# Define the recplica count for everything
35replicas:
36 adapter_simulated_olt: 1
37 adapter_simulated_onu: 1
38 onu: 1
39
40images:
41 adapter_simulated_olt:
42 repository: 'volthacore/voltha-adapter-simulated-olt'
43 tag: '{{ .Chart.AppVersion }}'
44 pullPolicy: 'Always'
45
46 adapter_simulated_onu:
47 repository: 'volthacore/voltha-adapter-simulated-onu'
48 tag: '{{ .Chart.AppVersion }}'
49 pullPolicy: 'Always'
50
51 ponsim:
52 repository: 'volthacore/voltha-ponsim'
53 tag: '{{ .Chart.AppVersion }}'
54 pullPolicy: 'Always'