Zack Williams | c6202fe | 2020-03-26 10:55:40 -0700 | [diff] [blame] | 1 | --- |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 2 | # Copyright 2019-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 16 | use_openonu_adapter_go: false |
| 17 | |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 18 | # Default overrides |
| 19 | defaults: |
Matteo Scandolo | 1d7ab92 | 2019-12-10 13:41:23 -0800 | [diff] [blame] | 20 | log_level: "WARN" |
David Bainbridge | 5cb5d17 | 2019-07-24 02:30:19 +0000 | [diff] [blame] | 21 | image_registry: "" |
Andy Bavier | 9a4566b | 2019-11-05 09:24:58 -0700 | [diff] [blame] | 22 | image_tag: ~ |
David Bainbridge | 5cb5d17 | 2019-07-24 02:30:19 +0000 | [diff] [blame] | 23 | image_org: "voltha/" |
| 24 | image_pullPolicy: "Always" |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 25 | |
| 26 | # Define connectivity to required services |
| 27 | services: |
| 28 | kafka: |
| 29 | adapter: |
| 30 | service: voltha-kafka.voltha.svc.cluster.local |
| 31 | port: 9092 |
| 32 | cluster: |
| 33 | service: voltha-kafka.voltha.svc.cluster.local |
| 34 | port: 9092 |
Matteo Scandolo | e33ed15 | 2019-12-03 10:47:49 -0800 | [diff] [blame] | 35 | |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 36 | # Define connectivity to etcd |
| 37 | etcd: |
| 38 | service: voltha-etcd-cluster-client.voltha.svc.cluster.local |
| 39 | port: 2379 |
| 40 | |
| 41 | # Define the recplica count for everything |
| 42 | replicas: |
| 43 | adapter_open_onu: 1 |
| 44 | |
Matteo Scandolo | e33ed15 | 2019-12-03 10:47:49 -0800 | [diff] [blame] | 45 | adapter_open_onu: |
Matteo Scandolo | 1d7ab92 | 2019-12-10 13:41:23 -0800 | [diff] [blame] | 46 | log_level: '{{ .Values.defaults.log_level }}' |
Matteo Scandolo | e33ed15 | 2019-12-03 10:47:49 -0800 | [diff] [blame] | 47 | |
David Bainbridge | cd30e54 | 2019-05-31 20:52:56 +0000 | [diff] [blame] | 48 | images: |
| 49 | adapter_open_onu: |
David Bainbridge | 5cb5d17 | 2019-07-24 02:30:19 +0000 | [diff] [blame] | 50 | registry: '{{ .Values.defaults.image_registry }}' |
| 51 | repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter' |
serkant.uluderya | cb549df | 2020-03-29 16:19:13 -0700 | [diff] [blame^] | 52 | tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}2.4.0{{- end }}{{- else }}2.4.0{{- end }}' |
David Bainbridge | 5cb5d17 | 2019-07-24 02:30:19 +0000 | [diff] [blame] | 53 | pullPolicy: '{{ .Values.defaults.image_pullPolicy }}' |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 54 | adapter_open_onu_go: |
| 55 | repository: '{{ .Values.defaults.image_org }}voltha-openonu-adapter-go' |
Matteo Scandolo | 4f6d59a | 2020-03-25 10:37:18 -0700 | [diff] [blame] | 56 | tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}master{{- end }}{{- else }}master{{- end }}' |
Zack Williams | c6202fe | 2020-03-26 10:55:40 -0700 | [diff] [blame] | 57 | pullPolicy: '{{ .Values.defaults.image_pullPolicy }}' |