blob: d5a913f1aca5c75191200aaba38c654b15f9e7d8 [file] [log] [blame]
David Bainbridge2f9b76f2019-05-15 13:48:11 -07001# 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 Bainbridge2f9b76f2019-05-15 13:48:11 -070014---
David Bainbridge8595b3b2020-06-05 12:23:05 -070015
David Bainbridgecd30e542019-05-31 20:52:56 +000016# Default overrides
17defaults:
David Bainbridge5cb5d172019-07-24 02:30:19 +000018 image_registry: ""
David Bainbridge5cb5d172019-07-24 02:30:19 +000019 image_org: "voltha/"
20 image_pullPolicy: "Always"
David Bainbridgeaa24b002019-10-16 16:07:12 +000021 image_tag: ~
David Bainbridge2f9b76f2019-05-15 13:48:11 -070022
David Bainbridge8595b3b2020-06-05 12:23:05 -070023# Default security context under which the containers run
24securityContext:
25 enabled: true
26 fsGroup: 1001
27 runAsUser: 1001
28 runAsGroup: 1001
29
David Bainbridge2f9b76f2019-05-15 13:48:11 -070030# Define connectivity to required services
31services:
32 kafka:
33 adapter:
34 service: voltha-kafka.voltha.svc.cluster.local
35 port: 9092
36 cluster:
37 service: voltha-kafka.voltha.svc.cluster.local
38 port: 9092
David Bainbridgeeb3e8582019-07-31 20:42:31 +000039
David Bainbridge2f9b76f2019-05-15 13:48:11 -070040 # Define connectivity to etcd
41 etcd:
42 service: voltha-etcd-cluster-client.voltha.svc.cluster.local
43 port: 2379
44
45# Define the recplica count for everything
46replicas:
47 adapter_simulated_olt: 1
48 adapter_simulated_onu: 1
David Bainbridgeeb3e8582019-07-31 20:42:31 +000049
50onus_per_pon_port: 4
David Bainbridge2f9b76f2019-05-15 13:48:11 -070051
52images:
53 adapter_simulated_olt:
David Bainbridge5cb5d172019-07-24 02:30:19 +000054 registry: '{{ .Values.defaults.image_registry }}'
55 repository: '{{ .Values.defaults.image_org }}voltha-adapter-simulated-olt'
Scott Baker1cbd70e2020-02-19 10:22:50 -080056 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}2.2.3{{- end }}{{- else }}2.2.3{{- end }}'
David Bainbridge5cb5d172019-07-24 02:30:19 +000057 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'
David Bainbridge2f9b76f2019-05-15 13:48:11 -070058
59 adapter_simulated_onu:
David Bainbridge5cb5d172019-07-24 02:30:19 +000060 registry: '{{ .Values.defaults.image_registry }}'
61 repository: '{{ .Values.defaults.image_org }}voltha-adapter-simulated-onu'
Scott Baker1cbd70e2020-02-19 10:22:50 -080062 tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}2.2.3{{- end }}{{- else }}2.2.3{{- end }}'
David Bainbridge5cb5d172019-07-24 02:30:19 +000063 pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'