blob: a538604846672bdf7be87706546b4011adf702d8 [file] [log] [blame]
Matteo Scandolo2996b052020-12-01 18:42:50 -08001# Copyright 2020-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---
15# Default overrides
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080016global:
Matteo Scandolo2996b052020-12-01 18:42:50 -080017 log_level: "WARN"
18 log_format: "json"
19 image_registry: ""
20 image_tag: ~
21 image_org: "voltha/"
22 image_pullPolicy: "Always"
23
24replicas: 1
25
26bbsim_sadis_port: 50074
27
28serviceAccountName: ~
29
30images:
31 bbsim_sadis_server:
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080032 registry: '{{ .Values.global.image_registry }}'
33 repository: '{{ .Values.global.image_org }}bbsim-sadis-server'
34 tag: '{{- if hasKey .Values.global "image_tag" }}{{- if .Values.global.image_tag }}{{ .Values.global.image_tag }}{{- else }}{{ .Chart.AppVersion }}{{- end }}{{- else }}{{ .Chart.AppVersion }}{{- end }}'
35 pullPolicy: '{{ .Values.global.image_pullPolicy | default "Always" }}'