diff options
author | efiacor <fiachra.corcoran@est.tech> | 2021-10-12 14:10:49 +0100 |
---|---|---|
committer | efiacor <fiachra.corcoran@est.tech> | 2021-12-07 12:36:35 +0000 |
commit | 370c6dc33e55bfee7b3b79bcc21481b02a3f1e24 (patch) | |
tree | f687912dcc35388a56a4fdacd9bddc81c667ff95 /kubernetes/so/Chart.yaml | |
parent | 71a47c57fa84a36bb12bf3b87ad0d18b142c8d37 (diff) |
[GLOBAL] Migrate to helm v3
Move all Chart.yaml to use apiVersion: 2
Move dependencies from requirements.yaml to Chart.yaml
Changes to all makeFiles
Changes to helm deploy plugin
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Change-Id: I03c5290eee9e40f76eacbf171e774204cf5fb1c0
Issue-ID: OOM-2845
Diffstat (limited to 'kubernetes/so/Chart.yaml')
-rwxr-xr-x | kubernetes/so/Chart.yaml | 92 |
1 files changed, 90 insertions, 2 deletions
diff --git a/kubernetes/so/Chart.yaml b/kubernetes/so/Chart.yaml index 94f916f184..d7466476de 100755 --- a/kubernetes/so/Chart.yaml +++ b/kubernetes/so/Chart.yaml @@ -1,5 +1,6 @@ # Copyright © 2017 Amdocs, Bell Canada # Modifications Copyright © 2021 Orange +# Modifications Copyright © 2021 Nordix Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,7 +13,94 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -apiVersion: v1 +apiVersion: v2 description: ONAP Service Orchestrator name: so -version: 9.0.0 +version: 10.0.0 + +dependencies: + - name: common + version: ~10.x-0 + # local reference to common chart, as it is + # a part of this chart's package and will not + # be published independently to a repo (at this point) + repository: '@local' + - name: certInitializer + version: ~10.x-0 + repository: '@local' + - name: readinessCheck + version: ~10.x-0 + repository: '@local' + - name: mariadb-galera + version: ~10.x-0 + repository: '@local' + condition: global.mariadbGalera.localCluster + - name: repositoryGenerator + version: ~10.x-0 + repository: '@local' + - name: soHelpers + version: ~10.x-0 + repository: 'file://components/soHelpers' + - name: so-admin-cockpit + version: ~10.x-0 + repository: 'file://components/so-admin-cockpit' + condition: so-admin-cockpit.enabled + - name: so-appc-orchestrator + version: ~10.x-0 + repository: 'file://components/so-appc-orchestrator' + condition: so-appc-orchestrator.enabled + - name: so-bpmn-infra + version: ~10.x-0 + repository: 'file://components/so-bpmn-infra' + - name: so-catalog-db-adapter + version: ~10.x-0 + repository: 'file://components/so-catalog-db-adapter' + condition: so-catalog-db-adapter.enabled + - name: so-cnf-adapter + version: ~10.x-0 + repository: "file://components/so-cnf-adapter" + condition: so-cnf-adapter.enabled + - name: so-etsi-nfvo-ns-lcm + version: ~10.x-0 + repository: 'file://components/so-etsi-nfvo-ns-lcm' + condition: so-etsi-nfvo-ns-lcm.enabled + - name: so-etsi-sol003-adapter + version: ~10.x-0 + repository: 'file://components/so-etsi-sol003-adapter' + condition: so-etsi-sol003-adapter.enabled + - name: so-mariadb + version: ~10.x-0 + repository: 'file://components/so-mariadb' + - name: so-nssmf-adapter + version: ~10.x-0 + repository: 'file://components/so-nssmf-adapter' + condition: so-nssmf-adapter.enabled + - name: so-oof-adapter + version: ~10.x-0 + repository: 'file://components/so-oof-adapter' + condition: so-oof-adapter.enabled + - name: so-openstack-adapter + version: ~10.x-0 + repository: 'file://components/so-openstack-adapter' + condition: so-openstack-adapter.enabled + - name: so-request-db-adapter + version: ~10.x-0 + repository: 'file://components/so-request-db-adapter' + - name: so-sdc-controller + version: ~10.x-0 + repository: 'file://components/so-sdc-controller' + - name: so-sdnc-adapter + version: ~10.x-0 + repository: 'file://components/so-sdnc-adapter' + condition: so-sdnc-adapter.enabled + - name: so-ve-vnfm-adapter + version: ~10.x-0 + repository: 'file://components/so-ve-vnfm-adapter' + condition: so-ve-vnfm-adapter.enabled + - name: so-etsi-sol005-adapter + version: ~10.x-0 + repository: 'file://components/so-etsi-sol005-adapter' + condition: so-etsi-sol005-adapter.enabled + - name: serviceAccount + version: ~10.x-0 + repository: '@local' |