blob: d6b027281f5ab06db1be593e56e45f5be066d33a [file] [log] [blame]
Zack Williams1849e612018-10-05 15:26:44 -07001# 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
serkant.uluderya3a4548f2020-04-01 13:47:17 -070017# Default overrides
Matteo Scandolo37b316d2021-01-25 11:52:51 -080018global:
serkant.uluderya3a4548f2020-04-01 13:47:17 -070019 log_level: "DEBUG"
20 image_registry: ""
21 image_tag: ~
22 image_org: "voltha/"
23 image_pullPolicy: "Always"
Zack Williams1849e612018-10-05 15:26:44 -070024
serkant.uluderya3a4548f2020-04-01 13:47:17 -070025# CLI switches passed to bbsim
Zack Williams1849e612018-10-05 15:26:44 -070026olt_id: 0
Matteo Scandolo3ed02892019-10-07 09:57:06 -070027nni: 1
28pon: 1
29onu: 1
Matteo Scandolo9b10cf62020-09-30 15:00:51 -070030# time that BBSim should wait to emulate an hardware reboot
31oltRebootDelay: 60
32# delay between ONU discovery indication
Matteo Scandolo6b662292019-12-03 14:49:41 -080033delay: 200
Matteo Scandolo37b316d2021-01-25 11:52:51 -080034log_level: '{{ .Values.global.log_level }}'
Shrey Baidaf70d9a2020-04-24 18:57:54 +053035kafkaEventTopic: ""
Shrey Baidf2a4e2c2020-06-16 22:49:41 +053036authRetry: false
37dhcpRetry: false
Matteo Scandolob2d061f2020-09-09 08:31:24 -070038# default, only-onu, only-pon, both
39controlledActivation: default
Holger Hildebrandtbfb48732021-04-27 09:27:06 +000040omci_response_rate: 10
Matteo Scandolobafbb992021-05-28 13:47:09 -070041bp_format: mef
Matteo Scandolo189d39f2020-04-23 16:11:26 -070042
Matteo Scandolo3ed02892019-10-07 09:57:06 -070043# TODO read this values in the config
Zack Williams1849e612018-10-05 15:26:44 -070044olt_tcp_port: 50060
Matteo Scandolo3ed02892019-10-07 09:57:06 -070045bbsim_api_port: 50070
Andrey Pozolotin9a109442020-09-07 22:22:39 +030046bbsim_rest_port: 50071
Matteo Scandolo812688a2019-12-11 09:16:53 -080047bbsim_sadis_port: 50074
Andrea Campanella28398c02020-10-13 14:48:41 +020048bbsim_dmi_port: 50075
Pragya Arya87231de2020-03-11 17:30:23 +053049enablePerf: false
50enableEvents: false
51kafkaAddress: ":9092"
Matteo Scandolo7df3ee02018-11-06 16:28:11 -080052
Matteo Scandolo9dab4bd2020-08-24 12:29:48 -070053servicesConfig:
54 workflow: att
55 services:
56 - name: hsia
57 c_tag: 900
58 c_tag_allocation: unique
59 s_tag: 900
60 s_tag_allocation: shared
61 needs_eapol: true
62 needs_dhcp: true
63 tp_id: 64
64
Luca Prete61164ae2018-11-28 16:15:59 -080065images:
66 bbsim:
Matteo Scandolo37b316d2021-01-25 11:52:51 -080067 registry: '{{ .Values.global.image_registry }}'
68 repository: '{{ .Values.global.image_org }}bbsim'
69 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
70 pullPolicy: '{{ .Values.global.image_pullPolicy | default "Always" }}'
Zack Williams1849e612018-10-05 15:26:44 -070071
Zack Williams1849e612018-10-05 15:26:44 -070072
Zack Williams1849e612018-10-05 15:26:44 -070073serviceAccountName: default
74
75nameOverride: ""
76fullnameOverride: ""
77
78replicaCount: 1
79
80resources: {}
81
82nodeSelector: {}
83
84tolerations: []
85
Matteo Scandoloeb401ad2019-10-30 13:32:11 -070086affinity: {}
Matteo Scandoloaf538bd2020-12-08 11:33:58 -080087
88privileged: false