blob: e1d19be9d5a25e092163a2b92dccd881723b7678 [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:
Joey Armstrong623b29d2024-02-10 21:12:11 -050026 - name : "Open Networking Foundation"
27 email : "info@opennetworking.org"
28 url : "https://www.opennetworking.org"
29
30name : "voltha-infra"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080031
Joey Armstrong8cd89ae2024-02-10 16:58:02 -050032# app version is NOT used in this chart for application versions or image tags
33# but represents the voltha release version itself
Joey Armstrong623b29d2024-02-10 21:12:11 -050034appVersion : "2.12"
Joey Armstrong8cd89ae2024-02-10 16:58:02 -050035
Joey Armstrong9926ccc2024-02-10 18:59:54 -050036## Chart version for package: voltha-infra
Joey Armstrong623b29d2024-02-10 21:12:11 -050037## aIncrement when Chart.yaml changes
38version : "2.12.6"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080039
40dependencies:
Joey Armstrong9926ccc2024-02-10 18:59:54 -050041 - name : "onos-classic"
42 repository : "https://charts.onosproject.org"
43 version : "0.1.31"
44 condition : "onos-classic.enabled"
Joey Armstrong623b29d2024-02-10 21:12:11 -050045 - name : "redis"
46 repository : "https://charts.bitnami.com/bitnami"
47 version : "17.0.10"
48 condition : "redis.enabled"
Joey Armstrong9926ccc2024-02-10 18:59:54 -050049 - name : "bbsim-sadis-server"
50 repository : "file://../bbsim-sadis-server"
51 version : "0.3.4"
52 condition : "bbsim-sadis-server.enabled"
Joey Armstrong623b29d2024-02-10 21:12:11 -050053 - 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 Armstrong9926ccc2024-02-10 18:59:54 -050067 version : "2.12.2"
Joey Armstrong623b29d2024-02-10 21:12:11 -050068 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 Scandolob4c5f4e2020-11-11 12:05:23 -080080 # 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 Armstrong623b29d2024-02-10 21:12:11 -050083 condition : "efk.enabled"
Joey Armstrong9926ccc2024-02-10 18:59:54 -050084
85# [EOF]