blob: 8712f7e3ac8db1fa42acb1eae12345e9ad326f73 [file] [log] [blame]
Joey Armstrong07475092023-01-26 10:56:13 -05001# Copyright 2019-2023 Open Networking Foundation (ONF) and the ONF Contributors
David Bainbridge2f9b76f2019-05-15 13:48:11 -07002#
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.
David Bainbridge8595b3b2020-06-05 12:23:05 -070014---
David Bainbridge2bdd4302020-06-09 17:13:18 -070015nameOverride: ~
16fullNameOverride: ~
Matteo Scandoloc2c917a2021-04-06 09:15:31 -070017fullHostnameOverride: ~
David Bainbridge2f9b76f2019-05-15 13:48:11 -070018
David Bainbridge60332ae2019-10-11 15:04:13 +000019# Default Values
20# The following are the default values used for every container in the
21# template.
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080022global:
23 stack_name: voltha
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080024 log_level: "WARN"
David Bainbridge5cb5d172019-07-24 02:30:19 +000025 image_registry: ''
Kent Hagerman42101a82019-06-12 12:52:39 -040026 image_org: "voltha/"
David Bainbridge60332ae2019-10-11 15:04:13 +000027 image_tag: ~
Kent Hagerman42101a82019-06-12 12:52:39 -040028 image_pullPolicy: "Always"
David Bainbridgecd30e542019-05-31 20:52:56 +000029 rw_core:
Girish Gowdraf8ac4032021-10-22 16:32:52 -070030 rpc_timeout: "30s"
Himani Chawla81472cd2021-11-08 17:14:11 +053031 flow_timeout: "30s"
Girish Gowdraf8ac4032021-10-22 16:32:52 -070032 internal_timeout: "30s"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080033 # Configure Log Correlation
34 log_correlation:
35 enabled: true
36 # Configure Tracing
37 tracing:
38 enabled: true
David Bainbridgecd30e542019-05-31 20:52:56 +000039
khenaidoo15c53fb2021-08-09 13:56:27 -040040# Probe values
41probe:
42 liveness:
43 initial_delay_seconds: 3
44 period_seconds: 3
45 readiness:
46 initial_delay_seconds: 3
47 period_seconds: 3
48
David Bainbridge8595b3b2020-06-05 12:23:05 -070049# Default security context under which the containers run
David Bainbridge16b19cc2020-05-29 11:50:44 -070050securityContext:
51 enabled: true
52 fsGroup: 1001
53 runAsUser: 1001
54 runAsGroup: 1001
David Bainbridge2f9b76f2019-05-15 13:48:11 -070055
56# Define connectivity to services on which VOLTHA depends
57services:
58 kafka:
David Bainbridge2f9b76f2019-05-15 13:48:11 -070059 cluster:
Neha Sharma1a3da1c2020-06-24 13:12:48 +000060 address: kafka:9092
David Bainbridge2f9b76f2019-05-15 13:48:11 -070061
abhaycd295062024-12-12 11:05:07 +053062 # Define connectivity to kv store
63 kvstore:
64 # type: etcd, redis or redis-sentinel
65 type: etcd
Neha Sharma1a3da1c2020-06-24 13:12:48 +000066 address: etcd:2379
David Bainbridge2f9b76f2019-05-15 13:48:11 -070067
Girish Kumar877af922020-07-31 06:05:32 +000068 # Define Tracing Agent connection details
69 tracing_agent:
70 address: jaeger-agent:6831
71
Jonathan Hart3980b742020-04-20 11:00:54 -070072 # Define the list of controllers to connect to
Matteo Scandolob65a5a72021-04-30 16:16:05 -070073 # NOTE this is needed only in case you need to connect to an external ONOS,
74 # if you want to connect to an ONOS installed via voltha-infra please refer to the onos_classic field in this config
75 controller: []
76 # - address: onos-openflow:6653
David Bainbridge2f9b76f2019-05-15 13:48:11 -070077
Matteo Scandoloe9a01f72020-05-05 09:33:59 -070078# Expose the golang pprof webserver, if enabled
79profiler:
80 enabled: false
81
Girish Kumar877af922020-07-31 06:05:32 +000082# Define the replica count for everything
David Bainbridge2f9b76f2019-05-15 13:48:11 -070083replicas:
84 # For R/W cores the templates translate the number of replicas
85 # into the number of RW core pairs with two pods per pair
86 rw_core: 1
87
88 # For everything else replicas are replicas
David Bainbridge2f9b76f2019-05-15 13:48:11 -070089 ofagent: 1
David Bainbridge2f9b76f2019-05-15 13:48:11 -070090
David Bainbridgecd30e542019-05-31 20:52:56 +000091rw_core:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080092 log_level: '{{ .Values.global.log_level }}'
khenaidoo15c53fb2021-08-09 13:56:27 -040093 rpc_timeout: '{{ .Values.global.rw_core.rpc_timeout }}'
Himani Chawla81472cd2021-11-08 17:14:11 +053094 flow_timeout: '{{ .Values.global.rw_core.flow_timeout }}'
khenaidoo15c53fb2021-08-09 13:56:27 -040095 internal_timeout: '{{ .Values.global.rw_core.internal_timeout }}'
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080096 kv_store_data_prefix: 'service/{{ .Values.global.stack_name }}_voltha'
Himani Chawlaafd8e842021-03-25 01:32:59 +053097 stack_id: "{{ .Values.global.stack_name }}"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080098 topics:
Matteo Scandolo06ee58c2021-05-26 15:28:51 -070099 event_topic: "voltha.events"
khenaidoo15c53fb2021-08-09 13:56:27 -0400100 backoff_initial_interval: 500ms
101 backoff_max_interval: 5s
102 backoff_max_elapsed_time: 0s
David Bainbridgecd30e542019-05-31 20:52:56 +0000103
David K. Bainbridge707022f2020-01-23 14:15:07 -0800104ofagent:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800105 log_level: '{{ .Values.global.log_level }}'
Matteo Scandolo06ee58c2021-05-26 15:28:51 -0700106 device_refresh_interval: '15s'
Marcos Aurelio Carrero (Furukawa)f6844f42023-06-06 15:18:58 -0300107 kv_store_data_prefix: 'service/{{ .Values.global.stack_name }}_voltha'
David K. Bainbridge707022f2020-01-23 14:15:07 -0800108
David Bainbridge2f9b76f2019-05-15 13:48:11 -0700109# Define Docker images to be used
Jan Klareea3ab392023-10-31 14:27:23 +0100110# voltha-ofagent-go repo https://github.com/opencord/ofagent-go
111# voltha-rw-core repo https://github.com/opencord/voltha-go
David Bainbridge2f9b76f2019-05-15 13:48:11 -0700112images:
David Bainbridge60018ec2020-06-02 13:32:30 -0700113 ofagent:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800114 registry: '{{ .Values.global.image_registry }}'
115 repository: '{{ .Values.global.image_org }}voltha-ofagent-go'
Jan Klareea3ab392023-10-31 14:27:23 +0100116 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}2.1.6{{- end }}{{- else }}2.1.6{{- end }}'
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800117 pullPolicy: '{{ .Values.global.image_pullPolicy }}'
Matteo Scandoloccea27b2020-03-18 15:25:05 -0700118
David Bainbridge2f9b76f2019-05-15 13:48:11 -0700119 rw_core:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800120 registry: '{{ .Values.global.image_registry }}'
121 repository: '{{ .Values.global.image_org }}voltha-rw-core'
Jan Klareea3ab392023-10-31 14:27:23 +0100122 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}3.4.8{{- end }}{{- else }}3.4.8{{- end }}'
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800123 pullPolicy: '{{ .Values.global.image_pullPolicy }}'
David K. Bainbridge637751d2021-03-25 22:18:08 +0000124
125ingress:
126 enabled: false
127 annotations:
128 kubernetes.io/ingress.class: "nginx"
129 nginx.ingress.kubernetes.io/ssl-redirect: "true"
130 nginx.ingress.kubernetes.io/backend-protocol: "GRPC"
131 nginx.ingress.kubernetes.io/grpc-backend: "true"
132 enableVirtualHosts: false
Matteo Scandoloc2c917a2021-04-06 09:15:31 -0700133 baseHostname: local
David K. Bainbridge637751d2021-03-25 22:18:08 +0000134 hosts:
135 - host:
136 paths:
137 - "/voltha.VolthaService/"
138 tls: []
Matteo Scandolob65a5a72021-04-30 16:16:05 -0700139
140# ofAgent needs to connect to multiple instances of ONOS.
141onos_classic:
142 onosOfPort: 6653
143 replicas: 1
Andrey Pozolotin7e928a92021-08-13 12:37:24 +0200144
145resources:
146 rw_core:
147 requests:
148 cpu: 500m
149 memory: 100Mi
150 limits:
151 cpu: ~
152 memory: ~
153 ofagent:
154 requests:
155 cpu: 300m
156 memory: 50Mi
157 limits:
158 cpu: ~
159 memory: ~
Andrey Pozolotinda75c922021-08-24 17:41:08 +0200160
161# Define scheduling rules for stack pods
162scheduleRules:
163 preferStackPodsOnSameNode: false
164 preferStacksOnDifferentNodes: false