Merge "[AAI] Add model-loader tracing config"
[oom.git] / docs / sections / guides / deployment_guides / oom_helm_release_repo_deploy.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0
2 .. International License.
3 .. http://creativecommons.org/licenses/by/4.0
4 .. Copyright (C) 2022 Nordix Foundation
5
6 .. Links
7 .. _ONAP helm release repository: https://nexus3.onap.org/service/rest/repository/browse/onap-helm-release/
8 .. _ONAP Release Long Term Roadmap: https://wiki.onap.org/display/DW/Long+Term+Roadmap
9
10 .. _oom_helm_release_repo_deploy:
11
12 OOM Helm Release Deployment
13 ===========================
14
15 ONAP hosts the OOM release helm charts in it's `ONAP helm release repository`_.
16
17 This is the officially supported repository for the deployment of OOM.
18
19 .. note::
20     ONAP supports up to N-1 releases. See `ONAP Release Long Term Roadmap`_ for more details.
21
22 Add the OOM release repo & Deploy
23 ---------------------------------
24 Add the repository:
25
26 - To add the onap release helm repo, execute the following::
27
28     > helm repo add onap-release https://nexus3.onap.org/repository/onap-helm-release/
29
30 .. note::
31     The following helm command will deploy ONAP charts, with `all` OOM components enabled as per the onap-all.yml overrides file provided to the `-f` flag.
32
33     To customize what applications are deployed, see the :ref:`oom_customize_overrides` section for more details, to provide your own custom overrides yaml file.
34
35 - To deploy a release, execute the following, substituting the <version> tag with your preferred release (ie. 13.0.0)::
36
37     >  helm deploy dev onap-release/onap --namespace onap --create-namespace --set global.masterPassword=myAwesomePasswordThatINeedToChange --version <version> -f oom/kubernetes/onap/resources/overrides/onap-all.yaml
38
39
40
41
42
43
44