blob: c976bf05ce75b25e04a7d38edb2ccbf06de45a3d [file] [log] [blame]
Joey Armstrong34d4ad72023-01-03 09:47:15 -05001# Copyright 2020-2023 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -08002#
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---
15apiVersion: v2
16description: A Helm chart to install the required infrastructure for VOLTHA
17keywords:
18 - "onf"
19 - "voltha"
20 - "onos"
21 - "radius"
22 - "sadis-server"
23home: "https://www.opennetworking.org/voltha"
24icon: "https://guide.opencord.org/logos/voltha.svg"
25maintainers:
26 - name: "Open Networking Foundation"
27 email: "info@opennetworking.org"
28 url: "https://www.opennetworking.org"
29name: voltha-infra
30
Joey Armstrong8cd89ae2024-02-10 16:58:02 -050031# app version is NOT used in this chart for application versions or image tags
32# but represents the voltha release version itself
33appVersion: "2.12"
34
Joey Armstrong9926ccc2024-02-10 18:59:54 -050035## Chart version for package: voltha-infra
Joey Armstrong8cd89ae2024-02-10 16:58:02 -050036## Increment when Chart.yaml changes
Joey Armstrong9926ccc2024-02-10 18:59:54 -050037version: "2.12.3"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080038
39dependencies:
Joey Armstrong9926ccc2024-02-10 18:59:54 -050040 - name : "onos-classic"
41 repository : "https://charts.onosproject.org"
42 version : "0.1.31"
43 condition : "onos-classic.enabled"
Tinoj Josephdd1fd9d2022-08-01 23:59:26 +053044 - name: redis
Tinoj Josepha9e53c92022-08-23 10:08:46 +053045 repository: https://charts.bitnami.com/bitnami
46 version: 17.0.10
Tinoj Josephdd1fd9d2022-08-01 23:59:26 +053047 condition: redis.enabled
Joey Armstrong9926ccc2024-02-10 18:59:54 -050048 - name : "bbsim-sadis-server"
49 repository : "file://../bbsim-sadis-server"
50 version : "0.3.4"
51 condition : "bbsim-sadis-server.enabled"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080052 - name: etcd
53 repository: https://charts.bitnami.com/bitnami
Mahir Gunyel4c254b12023-01-03 10:11:28 -080054 version: 8.5.11
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080055 condition: etcd.enabled
56 - name: kafka
57 repository: https://charts.bitnami.com/bitnami
Mahir Gunyel4c254b12023-01-03 10:11:28 -080058 version: 20.0.2
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080059 condition: kafka.enabled
60 - name: freeradius
61 repository: https://charts.opencord.org
62 version: 1.0.2
63 condition: radius.enabled
Joey Armstrong8cd89ae2024-02-10 16:58:02 -050064 - name : voltha-tracing
65 repository : file://../voltha-tracing
Joey Armstrong9926ccc2024-02-10 18:59:54 -050066 version : "2.12.2"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080067 condition: voltha-tracing.enabled
68 - name: elasticsearch
69 repository: https://helm.elastic.co
70 version: 7.10.1
71 condition: efk.enabled
72 - name: kibana
73 repository: https://helm.elastic.co
74 version: 7.10.1
75 condition: efk.enabled
76 - name: fluentd-elasticsearch
77 repository: https://kiwigrid.github.io
78 version: 9.6.2
79 # TODO kiwigrid is deprecated, use: https://github.com/kokuwaio/helm-charts/tree/main/charts/fluentd-elasticsearch
80 # repository: https://kokuwaio.github.io/helm-charts
81 # version: 11.7.1
82 condition: efk.enabled
Joey Armstrong9926ccc2024-02-10 18:59:54 -050083
84# [EOF]