diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2022-11-08 12:20:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-11-08 12:20:08 +0000 |
commit | bb23177521042d092d94922187b2a7cb9052c85a (patch) | |
tree | fbcea73deaee9a7d04796ff6cd2936b5c2ef2c56 /docs/sections/guides/deployment_guides/oom_helm_testing_repo_deploy.rst | |
parent | 365bdbc7853b4ca522899629c4ec653a06e5931a (diff) | |
parent | 0fb3b8f4d48a066259b8a9ea2a18d68d7644f8e5 (diff) |
Merge "[RDT] Refactoring RTD"
Diffstat (limited to 'docs/sections/guides/deployment_guides/oom_helm_testing_repo_deploy.rst')
-rw-r--r-- | docs/sections/guides/deployment_guides/oom_helm_testing_repo_deploy.rst | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/docs/sections/guides/deployment_guides/oom_helm_testing_repo_deploy.rst b/docs/sections/guides/deployment_guides/oom_helm_testing_repo_deploy.rst new file mode 100644 index 0000000000..a0dafcef9b --- /dev/null +++ b/docs/sections/guides/deployment_guides/oom_helm_testing_repo_deploy.rst @@ -0,0 +1,46 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 +.. International License. +.. http://creativecommons.org/licenses/by/4.0 +.. Copyright (C) 2022 Nordix Foundation + +.. Links +.. _ONAP helm testing repository: https://nexus3.onap.org/service/rest/repository/browse/onap-helm-testing/ +.. _OOM: https://github.com/onap/oom + +.. _oom_helm_testing_repo_deploy: + +OOM Helm Testing Deployment +=========================== + +ONAP hosts the OOM `testing` helm charts in it's `ONAP helm testing repository`_. + +This is helm repo contains: + + * The `latest` charts built from the head of the `OOM`_ project's master + branch, tagged with the version number of the current development cycle (ie. 11.0.0). + + +Add the OOM testing repo & Deploy +--------------------------------- +.. note:: + The testing helm charts for earlier releases are not fully supported. Test at your own risk. + +Add the repository: + +- To add the onap testing helm repo, execute the following:: + + > helm repo add onap-testing https://nexus3.onap.org/repository/onap-helm-testing/ + +.. note:: + 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. + + To customize what applications are deployed, see the :ref:`oom_customize_overrides` section for more details, to provide your own custom overrides yaml file. + +- To deploy the latest charts, we need to target the repo added previously:: + + > helm deploy dev onap-testing/onap --namespace onap --create-namespace --set global.masterPassword=myAwesomePasswordThatINeedToChange -f oom/kubernetes/onap/resources/overrides/onap-all.yaml + +This will deploy the latest testing version of the OOM helm charts. + + + |