blob: f9a4e2e11ddb085891464f1ae1be3aa0cc925fd6 [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
18defaults:
19 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 Scandoloeb401ad2019-10-30 13:32:11 -070030auth: false
31dhcp: false
Matteo Scandolo6b662292019-12-03 14:49:41 -080032delay: 200
Jonathan Hart1b9ae5c2020-02-11 16:54:45 -080033c_tag: 900
34s_tag: 900
serkant.uluderya3a4548f2020-04-01 13:47:17 -070035log_level: '{{ .Values.defaults.log_level }}'
Zack Williams1849e612018-10-05 15:26:44 -070036
Matteo Scandolo3ed02892019-10-07 09:57:06 -070037# TODO read this values in the config
Zack Williams1849e612018-10-05 15:26:44 -070038olt_tcp_port: 50060
Matteo Scandolo3ed02892019-10-07 09:57:06 -070039bbsim_api_port: 50070
Matteo Scandolo812688a2019-12-11 09:16:53 -080040bbsim_sadis_port: 50074
Pragya Arya87231de2020-03-11 17:30:23 +053041enablePerf: false
42enableEvents: false
43kafkaAddress: ":9092"
Matteo Scandolo7df3ee02018-11-06 16:28:11 -080044
Luca Prete61164ae2018-11-28 16:15:59 -080045images:
46 bbsim:
serkant.uluderya3a4548f2020-04-01 13:47:17 -070047 registry: '{{ .Values.defaults.image_registry }}'
48 repository: '{{ .Values.defaults.image_org }}bbsim'
49 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
50 pullPolicy: '{{ .Values.defaults.image_pullPolicy | default "Always" }}'
Zack Williams1849e612018-10-05 15:26:44 -070051
52global:
53 registry: ''
54
Zack Williams1849e612018-10-05 15:26:44 -070055serviceAccountName: default
56
57nameOverride: ""
58fullnameOverride: ""
59
60replicaCount: 1
61
62resources: {}
63
64nodeSelector: {}
65
66tolerations: []
67
Matteo Scandoloeb401ad2019-10-30 13:32:11 -070068affinity: {}