Matteo Scandolo | 2996b05 | 2020-12-01 18:42:50 -0800 | [diff] [blame] | 1 | # 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 Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 16 | global: |
Matteo Scandolo | 2996b05 | 2020-12-01 18:42:50 -0800 | [diff] [blame] | 17 | log_level: "WARN" |
| 18 | log_format: "json" |
| 19 | image_registry: "" |
| 20 | image_tag: ~ |
| 21 | image_org: "voltha/" |
| 22 | image_pullPolicy: "Always" |
| 23 | |
| 24 | replicas: 1 |
| 25 | |
| 26 | bbsim_sadis_port: 50074 |
| 27 | |
| 28 | serviceAccountName: ~ |
| 29 | |
| 30 | images: |
| 31 | bbsim_sadis_server: |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 32 | 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" }}' |