blob: c55424887aea42694180f54816d2f6a8877a069e [file] [log] [blame]
Eric Ball33b8b152025-01-21 11:45:40 -08001# Copyright 2020-2025 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
Eric Ball33b8b152025-01-21 11:45:40 -080033appVersion: "2.13"
Joey Armstrong1c399052024-02-10 13:23:13 -050034
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
Eric Ball33b8b152025-01-21 11:45:40 -080037version: "2.13.0"
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
Eric Ball33b8b152025-01-21 11:45:40 -080046 version : "2.13.0"
Joey Armstrong084e4472024-02-10 18:03:13 -050047 condition : voltha.enabled
48 - name : "voltha-adapter-openonu"
49 repository : "file://../voltha-adapter-openonu"
Eric Ball33b8b152025-01-21 11:45:40 -080050 version : "2.13.0"
Joey Armstrong084e4472024-02-10 18:03:13 -050051 condition : "voltha-adapter-openonu.enabled"
Joey Armstrong1c399052024-02-10 13:23:13 -050052 - name : voltha-adapter-openolt
53 repository : file://../voltha-adapter-openolt
Eric Ball33b8b152025-01-21 11:45:40 -080054 version : "2.13.0"
Joey Armstrong1c399052024-02-10 13:23:13 -050055 condition : voltha-adapter-openolt.enabled
Joey Armstrong084e4472024-02-10 18:03:13 -050056 - name : voltha-go-controller
57 repository : file://../voltha-go-controller
Eric Ball33b8b152025-01-21 11:45:40 -080058 version : "0.1.10"
Joey Armstrong084e4472024-02-10 18:03:13 -050059 condition : voltha-go-controller.enabled
Joey Armstrong1c399052024-02-10 13:23:13 -050060
61# [EOF]