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 /docs/oom_developer_guide.rst | |
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 'docs/oom_developer_guide.rst')
-rw-r--r-- | docs/oom_developer_guide.rst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/docs/oom_developer_guide.rst b/docs/oom_developer_guide.rst index 552aea25a7..05cdca1c46 100644 --- a/docs/oom_developer_guide.rst +++ b/docs/oom_developer_guide.rst @@ -85,7 +85,6 @@ The top level of the ONAP charts is shown below: common ├── cassandra │ ├── Chart.yaml - │ ├── requirements.yaml │ ├── resources │ │ ├── config │ │ │ └── docker-entrypoint.sh @@ -121,7 +120,6 @@ The top level of the ONAP charts is shown below: ├── ... └── postgres-legacy ├── Chart.yaml - ├── requirements.yaml ├── charts └── configs @@ -137,7 +135,6 @@ All of the ONAP components have charts that follow the pattern shown below: name-of-my-component ├── Chart.yaml - ├── requirements.yaml ├── component │ └── subcomponent-folder ├── charts @@ -182,7 +179,7 @@ This choice is done in root `values.yaml`: component2: enabled: true -Then in `requirements.yaml`, you'll use these values: +Then in `Chart.yaml` dependencies section, you'll use these values: .. code-block:: yaml |