Joey Armstrong | 34d4ad7 | 2023-01-03 09:47:15 -0500 | [diff] [blame] | 1 | # Copyright 2020-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 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 | apiVersion: v2 |
| 16 | description: A Helm chart to install the required infrastructure for VOLTHA |
| 17 | keywords: |
| 18 | - "onf" |
| 19 | - "voltha" |
| 20 | - "onos" |
| 21 | - "radius" |
| 22 | - "sadis-server" |
| 23 | home: "https://www.opennetworking.org/voltha" |
| 24 | icon: "https://guide.opencord.org/logos/voltha.svg" |
| 25 | maintainers: |
Joey Armstrong | 623b29d | 2024-02-10 21:12:11 -0500 | [diff] [blame] | 26 | - name : "Open Networking Foundation" |
| 27 | email : "info@opennetworking.org" |
| 28 | url : "https://www.opennetworking.org" |
| 29 | |
| 30 | name : "voltha-infra" |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 31 | |
Joey Armstrong | 8cd89ae | 2024-02-10 16:58:02 -0500 | [diff] [blame] | 32 | # app version is NOT used in this chart for application versions or image tags |
| 33 | # but represents the voltha release version itself |
Joey Armstrong | 623b29d | 2024-02-10 21:12:11 -0500 | [diff] [blame] | 34 | appVersion : "2.12" |
Joey Armstrong | 8cd89ae | 2024-02-10 16:58:02 -0500 | [diff] [blame] | 35 | |
Joey Armstrong | 9926ccc | 2024-02-10 18:59:54 -0500 | [diff] [blame] | 36 | ## Chart version for package: voltha-infra |
Cristina de Francisco | 69fa303 | 2024-11-13 14:48:05 +0100 | [diff] [blame^] | 37 | ## Increment when Chart.yaml changes |
| 38 | version: "2.12.7" |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 39 | |
| 40 | dependencies: |
Joey Armstrong | 9926ccc | 2024-02-10 18:59:54 -0500 | [diff] [blame] | 41 | - name : "onos-classic" |
| 42 | repository : "https://charts.onosproject.org" |
| 43 | version : "0.1.31" |
| 44 | condition : "onos-classic.enabled" |
Joey Armstrong | 623b29d | 2024-02-10 21:12:11 -0500 | [diff] [blame] | 45 | - name : "redis" |
| 46 | repository : "https://charts.bitnami.com/bitnami" |
| 47 | version : "17.0.10" |
| 48 | condition : "redis.enabled" |
Joey Armstrong | 9926ccc | 2024-02-10 18:59:54 -0500 | [diff] [blame] | 49 | - name : "bbsim-sadis-server" |
| 50 | repository : "file://../bbsim-sadis-server" |
| 51 | version : "0.3.4" |
| 52 | condition : "bbsim-sadis-server.enabled" |
Joey Armstrong | 623b29d | 2024-02-10 21:12:11 -0500 | [diff] [blame] | 53 | - name : "etcd" |
| 54 | repository : "https://charts.bitnami.com/bitnami" |
| 55 | version : "8.5.11" |
| 56 | condition : "etcd.enabled" |
| 57 | - name : "kafka" |
| 58 | repository : "https://charts.bitnami.com/bitnami" |
| 59 | version : "20.0.2" |
| 60 | condition : "kafka.enabled" |
| 61 | - name : "freeradius" |
| 62 | repository : "https://charts.opencord.org" |
| 63 | version : "1.0.2" |
| 64 | condition : "radius.enabled" |
| 65 | - name : "voltha-tracing" |
| 66 | repository : "file://../voltha-tracing" |
Joey Armstrong | 9926ccc | 2024-02-10 18:59:54 -0500 | [diff] [blame] | 67 | version : "2.12.2" |
Joey Armstrong | 623b29d | 2024-02-10 21:12:11 -0500 | [diff] [blame] | 68 | condition : "voltha-tracing.enabled" |
| 69 | - name : "elasticsearch" |
| 70 | repository : "https://helm.elastic.co" |
| 71 | version : "7.10.1" |
| 72 | condition : "efk.enabled" |
| 73 | - name : "kibana" |
| 74 | repository : "https://helm.elastic.co" |
| 75 | version : "7.10.1" |
| 76 | condition : "efk.enabled" |
| 77 | - name : "fluentd-elasticsearch" |
| 78 | repository : "https://kiwigrid.github.io" |
| 79 | version : "9.6.2" |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 80 | # TODO kiwigrid is deprecated, use: https://github.com/kokuwaio/helm-charts/tree/main/charts/fluentd-elasticsearch |
| 81 | # repository: https://kokuwaio.github.io/helm-charts |
| 82 | # version: 11.7.1 |
Joey Armstrong | 623b29d | 2024-02-10 21:12:11 -0500 | [diff] [blame] | 83 | condition : "efk.enabled" |
Joey Armstrong | 9926ccc | 2024-02-10 18:59:54 -0500 | [diff] [blame] | 84 | |
| 85 | # [EOF] |