blob: 6743265ec43293e1d6a6e94cc6be11f043a0d9fd [file] [log] [blame]
Elia Battiston98458082022-02-28 19:07:43 +01001# Copyright 2022-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---
15nameOverride: ~
16fullNameOverride: ~
17
18# Default overrides
19global:
20 log_level: "WARN"
21 image_registry: ""
22 image_tag: ~
23 image_org: "voltha/"
24 image_pullPolicy: "Always"
Elia Battiston150669d2022-03-14 18:44:41 +010025 voltha_infra_name: "voltha-infra"
26 voltha_infra_namespace: "infra"
27 voltha_stack_name: "voltha"
28 voltha_stack_namespace: "voltha"
Elia Battiston98458082022-02-28 19:07:43 +010029
30 # Configure Log Correlation
31 log_correlation:
32 enabled: true
33
34 # Configure Tracing
35 tracing:
36 enabled: true
37
38# Probe values
39probe:
40 liveness:
41 initial_delay_seconds: 3
42 period_seconds: 3
43 readiness:
44 initial_delay_seconds: 3
45 period_seconds: 3
46
47# Default security context under which the containers run
48securityContext:
Elia Battiston150669d2022-03-14 18:44:41 +010049 enabled: false
Elia Battiston98458082022-02-28 19:07:43 +010050 fsGroup: 1001
51 runAsUser: 1001
52 runAsGroup: 1001
53
54# Define connectivity to required services
55services:
56 # Define Tracing Agent connection details
57 tracing_agent:
58 address: jaeger-agent:6831
59
60# Define the replica count for everything
61replicas:
62 bbf_adapter: 1
63
64voltha_northbound_bbf_adapter:
65 log_level: '{{ .Values.global.log_level }}'
Elia Battiston150669d2022-03-14 18:44:41 +010066 voltha_nbi_port: 55555
67 tls_enabled: false
68 tls_verify: false
69 onos_rest_port: 8181
70 onos_user: onos
71 onos_pass: rocks
Elia Battiston98458082022-02-28 19:07:43 +010072
73images:
74 voltha_northbound_bbf_adapter:
75 registry: '{{ .Values.global.image_registry }}'
76 repository: '{{ .Values.global.image_org }}voltha-northbound-bbf-adapter'
77 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
78 pullPolicy: '{{ .Values.global.image_pullPolicy | default "Always" }}'
79
80# Define scheduling rules for stack pods
81scheduleRules:
82 preferStackPodsOnSameNode: false
83 preferStacksOnDifferentNodes: false