Merge "[AAI] Add model-loader tracing config"
[oom.git] / docs / sections / guides / deployment_guides / oom_helm_testing_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 testing repository: https://nexus3.onap.org/service/rest/repository/browse/onap-helm-testing/
8 .. _OOM: https://github.com/onap/oom
9
10 .. _oom_helm_testing_repo_deploy:
11
12 OOM Helm Testing Deployment
13 ===========================
14
15 ONAP hosts the OOM `testing` helm charts in it's `ONAP helm testing repository`_.
16
17 This is helm repo contains:
18
19     * The `latest` charts built from the head of the `OOM`_ project's master
20       branch, tagged with the version number of the current development cycle (ie. 12.0.0).
21
22
23 Add the OOM testing repo & Deploy
24 ---------------------------------
25 .. note::
26    The testing helm charts for earlier releases are not fully supported. Test at your own risk.
27
28 Add the repository:
29
30 - To add the onap testing helm repo, execute the following::
31
32     > helm repo add onap-testing https://nexus3.onap.org/repository/onap-helm-testing/
33
34 .. note::
35     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.
36
37     To customize what applications are deployed, see the :ref:`oom_customize_overrides` section for more details, to provide your own custom overrides yaml file.
38
39 - To deploy the latest charts, we need to target the repo added previously::
40
41     >  helm deploy dev onap-testing/onap --namespace onap --create-namespace --set global.masterPassword=myAwesomePasswordThatINeedToChange -f oom/kubernetes/onap/resources/overrides/onap-all.yaml
42
43 This will deploy the latest testing version of the OOM helm charts.
44
45
46