blob: 4983744169968945c0f44921fe3b54a6bba60981 [file] [log] [blame]
Matteo Scandolo71d97d92021-06-24 11:58:32 +02001# Copyright 2018-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# bbsim values
16
17# Default overrides
18global:
19 log_level: "DEBUG"
20 image_registry: ""
21 image_tag: ~
22 image_org: "voltha/"
23 image_pullPolicy: "Always"
24
25# CLI switches passed to bbsim
26olt_id: 0
27nni: 1
28pon: 1
29onu: 1
30uni: 4
Elia Battistonffb9da52022-01-20 10:38:05 +010031pots: 0
Matteo Scandolo71d97d92021-06-24 11:58:32 +020032# time that BBSim should wait to emulate an hardware reboot
33oltRebootDelay: 60
34# delay between ONU discovery indication
35delay: 200
36log_level: '{{ .Values.global.log_level }}'
37kafkaEventTopic: ""
38authRetry: false
39dhcpRetry: false
40# default, only-onu, only-pon, both
41controlledActivation: default
42omci_response_rate: 10
43bp_format: mef
44
45# TODO read this values in the config
46olt_tcp_port: 50060
47bbsim_api_port: 50070
48bbsim_rest_port: 50071
49bbsim_sadis_port: 50074
50bbsim_dmi_port: 50075
51enablePerf: false
52enableEvents: false
53kafkaAddress: ":9092"
54
55servicesConfig:
56 workflow: att
57 services:
58 - name: hsia
59 c_tag: 900
60 c_tag_allocation: unique
61 s_tag: 900
62 s_tag_allocation: shared
63 needs_eapol: true
64 needs_dhcp: true
65 tp_id: 64
66
67images:
68 bbsim:
69 registry: '{{ .Values.global.image_registry }}'
70 repository: '{{ .Values.global.image_org }}bbsim'
71 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
72 pullPolicy: '{{ .Values.global.image_pullPolicy | default "Always" }}'
73
74
75serviceAccountName: default
76
77nameOverride: ""
78fullnameOverride: ""
79
80replicaCount: 1
81
82resources: {}
83
84nodeSelector: {}
85
86tolerations: []
87
88affinity: {}
89
90privileged: false