blob: eb299f00d64cdb9d67638c9c54b5f6a290cd04d5 [file] [log] [blame]
Joey Armstrong1c399052024-02-10 13:23:13 -05001# Copyright 2020-2024 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 a VOLTHA stack on existing infrastructure
17keywords:
18 - "onf"
19 - "voltha"
20 - "openolt-adapters"
21 - "openonu-adapters"
22home: "https://www.opennetworking.org/voltha"
23icon: "https://guide.opencord.org/logos/voltha.svg"
Joey Armstrong1c399052024-02-10 13:23:13 -050024maintainers :
25 - name : "Open Networking Foundation"
26 email : "info@opennetworking.org"
27 url : "https://www.opennetworking.org"
28
29name : voltha-stack
30
31# 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 Armstrong6a104e92024-02-10 15:27:58 -050035## Chart version for package voltha-stack
Joey Armstrong1c399052024-02-10 13:23:13 -050036## Increment when Chart.yaml changes
Joey Armstrong084e4472024-02-10 18:03:13 -050037version : "2.12.8"
Joey Armstrong1c399052024-02-10 13:23:13 -050038
39# -----------------------------------------------------------------------
40# NOTE: Dependencies are chart versions not component/repository version
41# Match up with Chart.yaml files: find . -name 'Chart.yaml' -print
42# -----------------------------------------------------------------------
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080043dependencies:
Joey Armstrong1c399052024-02-10 13:23:13 -050044 - name : voltha
45 repository : file://../voltha
Joey Armstrong084e4472024-02-10 18:03:13 -050046 version : "2.12.16"
47 condition : voltha.enabled
48 - name : "voltha-adapter-openonu"
49 repository : "file://../voltha-adapter-openonu"
50 version : "2.12.3"
51 condition : "voltha-adapter-openonu.enabled"
Joey Armstrong1c399052024-02-10 13:23:13 -050052 - name : voltha-adapter-openolt
53 repository : file://../voltha-adapter-openolt
54 version : "2.12.6"
55 condition : voltha-adapter-openolt.enabled
Joey Armstrong084e4472024-02-10 18:03:13 -050056 - name : voltha-go-controller
57 repository : file://../voltha-go-controller
58 version : "0.1.4"
59 condition : voltha-go-controller.enabled
Joey Armstrong1c399052024-02-10 13:23:13 -050060
61# [EOF]