Joey Armstrong | 1c39905 | 2024-02-10 13:23:13 -0500 | [diff] [blame] | 1 | # Copyright 2020-2024 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 a VOLTHA stack on existing infrastructure |
| 17 | keywords: |
| 18 | - "onf" |
| 19 | - "voltha" |
| 20 | - "openolt-adapters" |
| 21 | - "openonu-adapters" |
| 22 | home: "https://www.opennetworking.org/voltha" |
| 23 | icon: "https://guide.opencord.org/logos/voltha.svg" |
Joey Armstrong | 1c39905 | 2024-02-10 13:23:13 -0500 | [diff] [blame] | 24 | maintainers : |
| 25 | - name : "Open Networking Foundation" |
| 26 | email : "info@opennetworking.org" |
| 27 | url : "https://www.opennetworking.org" |
| 28 | |
| 29 | name : 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 |
| 33 | appVersion : "2.12" |
| 34 | |
Joey Armstrong | 6a104e9 | 2024-02-10 15:27:58 -0500 | [diff] [blame] | 35 | ## Chart version for package voltha-stack |
Joey Armstrong | 1c39905 | 2024-02-10 13:23:13 -0500 | [diff] [blame] | 36 | ## Increment when Chart.yaml changes |
Praneeth Kumar Nalmas | 5cd48d7 | 2024-04-17 10:37:40 +0530 | [diff] [blame^] | 37 | version : "2.12.10" |
Joey Armstrong | 1c39905 | 2024-02-10 13:23:13 -0500 | [diff] [blame] | 38 | |
| 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 Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 43 | dependencies: |
Joey Armstrong | 1c39905 | 2024-02-10 13:23:13 -0500 | [diff] [blame] | 44 | - name : voltha |
| 45 | repository : file://../voltha |
Praneeth Kumar Nalmas | 5cd48d7 | 2024-04-17 10:37:40 +0530 | [diff] [blame^] | 46 | version : "2.12.19" |
Joey Armstrong | 084e447 | 2024-02-10 18:03:13 -0500 | [diff] [blame] | 47 | condition : voltha.enabled |
| 48 | - name : "voltha-adapter-openonu" |
| 49 | repository : "file://../voltha-adapter-openonu" |
Praneeth Kumar Nalmas | 5cd48d7 | 2024-04-17 10:37:40 +0530 | [diff] [blame^] | 50 | version : "2.12.4" |
Joey Armstrong | 084e447 | 2024-02-10 18:03:13 -0500 | [diff] [blame] | 51 | condition : "voltha-adapter-openonu.enabled" |
Joey Armstrong | 1c39905 | 2024-02-10 13:23:13 -0500 | [diff] [blame] | 52 | - name : voltha-adapter-openolt |
| 53 | repository : file://../voltha-adapter-openolt |
| 54 | version : "2.12.6" |
| 55 | condition : voltha-adapter-openolt.enabled |
Joey Armstrong | 084e447 | 2024-02-10 18:03:13 -0500 | [diff] [blame] | 56 | - name : voltha-go-controller |
| 57 | repository : file://../voltha-go-controller |
| 58 | version : "0.1.4" |
| 59 | condition : voltha-go-controller.enabled |
Joey Armstrong | 1c39905 | 2024-02-10 13:23:13 -0500 | [diff] [blame] | 60 | |
| 61 | # [EOF] |