blob: 98ad5e925ca3252fcba3a4bde794b6a946d8a9bc [file] [log] [blame]
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -08001# Copyright 2020-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
16global:
17 stack_name: voltha
18 log_level: "WARN"
19 voltha_infra_name: "voltha-infra"
20 voltha_infra_namespace: "infra"
21 log_correlation:
22 enabled: false
23 tracing:
24 enabled: false
25
26voltha:
27 enabled: true
28 rw_core:
29 kv_store_data_prefix: 'service/voltha/{{ .Release.Name }}_{{ .Values.global.stack_name }}'
30 topics:
31 core_topic: "{{ .Release.Name }}_{{ .Values.global.stack_name }}_rwcore"
32 services:
33 kafka:
34 adapter:
35 address: "{{ .Values.global.voltha_infra_name }}-kafka.{{ .Values.global.voltha_infra_namespace }}.svc:9092"
36 cluster:
37 address: "{{ .Values.global.voltha_infra_name }}-kafka.{{ .Values.global.voltha_infra_namespace }}.svc:9092"
38 etcd:
39 address: "{{ .Values.global.voltha_infra_name }}-etcd.{{ .Values.global.voltha_infra_namespace }}.svc:2379"
40 tracing_agent:
41 address: "{{ .Values.global.voltha_infra_name }}-voltha-tracing-jaeger-agent.{{ .Values.global.voltha_infra_namespace }}.svc:6831"
42 controller:
43 # TODO need to customize for multiple instances
44 - address: "{{ .Values.global.voltha_infra_name }}-onos-classic-hs.{{ .Values.global.voltha_infra_namespace }}.svc:6653"
45
46voltha-adapter-openonu:
47 enabled: true
48 adapter_open_onu:
49 kv_store_data_prefix: 'service/voltha/{{ .Release.Name }}_{{ .Values.global.stack_name }}'
50 topics:
51 core_topic: "{{ .Release.Name }}_{{ .Values.global.stack_name }}_rwcore"
52 adapter_open_onu_topic: "{{ .Release.Name }}_{{ .Values.global.stack_name }}_brcm_openomci_onu"
53 services:
54 kafka:
55 adapter:
56 service: "{{ .Values.global.voltha_infra_name }}-kafka.{{ .Values.global.voltha_infra_namespace }}.svc"
57 port: 9092
58 cluster:
59 service: "{{ .Values.global.voltha_infra_name }}-kafka.{{ .Values.global.voltha_infra_namespace }}.svc"
60 port: 9092
61 etcd:
62 service: "{{ .Values.global.voltha_infra_name }}-etcd.{{ .Values.global.voltha_infra_namespace }}.svc"
63 port: 2379
64 tracing_agent:
65 address: "{{ .Values.global.voltha_infra_name }}-voltha-tracing-jaeger-agent.{{ .Values.global.voltha_infra_namespace }}.svc:6831"
66
67voltha-adapter-openolt:
68 enabled: true
69 adapter_open_olt:
70 kv_store_data_prefix: 'service/voltha/{{ .Release.Name }}_{{ .Values.global.stack_name }}'
71 topics:
72 core_topic: "{{ .Release.Name }}_{{ .Values.global.stack_name }}_rwcore"
73 adapter_open_olt_topic: "{{ .Release.Name }}_{{ .Values.global.stack_name }}_openolt"
74 services:
75 kafka:
76 adapter:
77 address: "{{ .Values.global.voltha_infra_name }}-kafka.{{ .Values.global.voltha_infra_namespace }}.svc:9092"
78 cluster:
79 address: "{{ .Values.global.voltha_infra_name }}-kafka.{{ .Values.global.voltha_infra_namespace }}.svc:9092"
80 etcd:
81 address: "{{ .Values.global.voltha_infra_name }}-etcd.{{ .Values.global.voltha_infra_namespace }}.svc:2379"
82 tracing_agent:
83 address: "{{ .Values.global.voltha_infra_name }}-voltha-tracing-jaeger-agent.{{ .Values.global.voltha_infra_namespace }}.svc:6831"