blob: 1d027d78c4eef801dfa38f33232a033f18123bb9 [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:
David Bainbridge8595b3b2020-06-05 12:23:05 -070051 service: kafka
David Bainbridgecd30e542019-05-31 20:52:56 +000052 port: 9092
53 cluster:
David Bainbridge8595b3b2020-06-05 12:23:05 -070054 service: kafka
David Bainbridgecd30e542019-05-31 20:52:56 +000055 port: 9092
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080056
David Bainbridgecd30e542019-05-31 20:52:56 +000057 # Define connectivity to etcd
58 etcd:
David Bainbridge8595b3b2020-06-05 12:23:05 -070059 service: etcd
David Bainbridgecd30e542019-05-31 20:52:56 +000060 port: 2379
61
Matteo Scandoloe9a01f72020-05-05 09:33:59 -070062# Expose the golang pprof webserver, if enabled
63profiler:
64 enabled: false
65
David Bainbridgecd30e542019-05-31 20:52:56 +000066# Define the recplica count for everything
67replicas:
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070068 current_replica: 1
69 total_replica: 1
David Bainbridgecd30e542019-05-31 20:52:56 +000070
Matteo Scandolo1d7ab922019-12-10 13:41:23 -080071adapter_open_olt:
72 log_level: '{{ .Values.defaults.log_level }}'
73
David Bainbridgecd30e542019-05-31 20:52:56 +000074images:
75 adapter_open_olt:
David Bainbridge5cb5d172019-07-24 02:30:19 +000076 registry: '{{ .Values.defaults.image_registry }}'
77 repository: '{{ .Values.defaults.image_org }}voltha-openolt-adapter'
Andy Bavier9a4566b2019-11-05 09:24:58 -070078 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 +000079 pullPolicy: '{{ .Values.defaults.image_pullPolicy | default "Always" }}'