blob: 3901a1115b8ab3213a588eedf2ed48855d8f0246 [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:
David Bainbridge5cb5d172019-07-24 02:30:19 +000018 image_registry: ""
David Bainbridge5cb5d172019-07-24 02:30:19 +000019 image_org: "voltha/"
20 image_pullPolicy: "Always"
David Bainbridge2f9b76f2019-05-15 13:48:11 -070021
22# Define connectivity to required services
23services:
24 kafka:
25 adapter:
26 service: voltha-kafka.voltha.svc.cluster.local
27 port: 9092
28 cluster:
29 service: voltha-kafka.voltha.svc.cluster.local
30 port: 9092
David Bainbridgeeb3e8582019-07-31 20:42:31 +000031
David Bainbridge2f9b76f2019-05-15 13:48:11 -070032 # Define connectivity to etcd
33 etcd:
34 service: voltha-etcd-cluster-client.voltha.svc.cluster.local
35 port: 2379
36
37# Define the recplica count for everything
38replicas:
39 adapter_simulated_olt: 1
40 adapter_simulated_onu: 1
David Bainbridgeeb3e8582019-07-31 20:42:31 +000041
42onus_per_pon_port: 4
David Bainbridge2f9b76f2019-05-15 13:48:11 -070043
44images:
45 adapter_simulated_olt:
David Bainbridge5cb5d172019-07-24 02:30:19 +000046 registry: '{{ .Values.defaults.image_registry }}'
47 repository: '{{ .Values.defaults.image_org }}voltha-adapter-simulated-olt'
Scott Baker008d1812019-10-08 14:38:19 -070048 tag: '2.2.0'
David Bainbridge5cb5d172019-07-24 02:30:19 +000049 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'
David Bainbridge2f9b76f2019-05-15 13:48:11 -070050
51 adapter_simulated_onu:
David Bainbridge5cb5d172019-07-24 02:30:19 +000052 registry: '{{ .Values.defaults.image_registry }}'
53 repository: '{{ .Values.defaults.image_org }}voltha-adapter-simulated-onu'
Scott Baker008d1812019-10-08 14:38:19 -070054 tag: '2.2.0'
David Bainbridge5cb5d172019-07-24 02:30:19 +000055 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'