blob: cc953f93ecc2005589589bab7b454ce65cdc1fd3 [file] [log] [blame]
David Bainbridgecd30e542019-05-31 20:52:56 +00001# Copyright 2019-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.
David Bainbridge8595b3b2020-06-05 12:23:05 -070014---
David Bainbridge2bdd4302020-06-09 17:13:18 -070015nameOverride: ~
16fullNameOverride: ~
David Bainbridgecd30e542019-05-31 20:52:56 +000017
David Bainbridgecd30e542019-05-31 20:52:56 +000018# Default overrides
19defaults:
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080020 log_level: "WARN"
David Bainbridge5cb5d172019-07-24 02:30:19 +000021 image_registry: ""
Andy Bavier9a4566b2019-11-05 09:24:58 -070022 image_tag: ~
David Bainbridge5cb5d172019-07-24 02:30:19 +000023 image_org: "voltha/"
24 image_pullPolicy: "Always"
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070025 topics:
26 core_topic: "rwcore"
27 adapter_open_olt_topic: "openolt"
David Bainbridge8595b3b2020-06-05 12:23:05 -070028
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070029 # Define prefix path for etcd
David Bainbridge8595b3b2020-06-05 12:23:05 -070030 # If you're running multiple voltha stacks the this value
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070031 # should be unique across the stacks.
32 kv_store_data_prefix: "service/voltha"
David Bainbridgecd30e542019-05-31 20:52:56 +000033
David Bainbridge8595b3b2020-06-05 12:23:05 -070034# Default security context under which the containers run
35securityContext:
36 enabled: true
37 fsGroup: 1001
38 runAsUser: 1001
39 runAsGroup: 1001
40
Girish Gowdra12231512020-06-29 13:00:48 -070041# Node Affinity Configuration
42nodeAffinityConfig:
43 enabled: false
44 node_label_key: "in-band"
45 node_label_value: "yes"
46
David Bainbridgecd30e542019-05-31 20:52:56 +000047# Define connectivity to required services
48services:
49 kafka:
50 adapter:
Neha Sharma1a3da1c2020-06-24 13:12:48 +000051 address: kafka:9092
David Bainbridgecd30e542019-05-31 20:52:56 +000052 cluster:
Neha Sharma1a3da1c2020-06-24 13:12:48 +000053 address: kafka:9092
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080054
David Bainbridgecd30e542019-05-31 20:52:56 +000055 # Define connectivity to etcd
56 etcd:
Neha Sharma1a3da1c2020-06-24 13:12:48 +000057 address: etcd:2379
David Bainbridgecd30e542019-05-31 20:52:56 +000058
Matteo Scandoloe9a01f72020-05-05 09:33:59 -070059# Expose the golang pprof webserver, if enabled
60profiler:
61 enabled: false
62
David Bainbridgecd30e542019-05-31 20:52:56 +000063# Define the recplica count for everything
64replicas:
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070065 current_replica: 1
66 total_replica: 1
David Bainbridgecd30e542019-05-31 20:52:56 +000067
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080068adapter_open_olt:
69 log_level: '{{ .Values.defaults.log_level }}'
70
David Bainbridgecd30e542019-05-31 20:52:56 +000071images:
72 adapter_open_olt:
David Bainbridge5cb5d172019-07-24 02:30:19 +000073 registry: '{{ .Values.defaults.image_registry }}'
74 repository: '{{ .Values.defaults.image_org }}voltha-openolt-adapter'
Andy Bavier9a4566b2019-11-05 09:24:58 -070075 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
David Bainbridgecd30e542019-05-31 20:52:56 +000076 pullPolicy: '{{ .Values.defaults.image_pullPolicy | default "Always" }}'