summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorPawel Wieczorek <p.wieczorek2@samsung.com>2019-01-23 16:46:56 +0100
committerPaweł Wieczorek <p.wieczorek2@samsung.com>2019-01-23 16:12:58 +0000
commit1d4b96fbc74243b089ac428e5ca03acde8a9ccf4 (patch)
tree1f7902d0ad1ca84431797cf9a0e5e3eee1c030aa /docs
parentda941ed88720d0917bf3a7eeb624f2bbe0264571 (diff)
docs: Replace Helm "install" using "deploy" plugin
With Casablanca release "deploy" Helm plugin has become preferred way of ONAP installation (even though it is a temporary solution). This patch replaces all but one occurences of "helm install" command - the remaining one is the placeholder for installation from osn repo. It also imports plugin installation step from Quick Start Guide. Issue-ID: DOC-381 Change-Id: I5ec6379b7a55eb2fd9230c17e3973980a03e77c9 Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/oom_user_guide.rst12
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/oom_user_guide.rst b/docs/oom_user_guide.rst
index ea658f0893..99a9a474d1 100644
--- a/docs/oom_user_guide.rst
+++ b/docs/oom_user_guide.rst
@@ -145,15 +145,19 @@ system, and looks for matches::
In any case, setup of the Helm repository is a one time activity.
+Next, install Helm Plugins required to deploy the ONAP Casablanca release::
+
+ > cp -R helm/plugins/ ~/.helm
+
Once the repo is setup, installation of ONAP can be done with a single command::
- > helm install local/onap --name development
+ > helm deploy development local/onap --namespace onap
This will install ONAP from a local repository in a 'development' Helm release.
As described below, to override the default configuration values provided by
OOM, an environment file can be provided on the command line as follows::
- > helm install local/onap --name development -f onap-development.yaml
+ > helm deploy development local/onap --namespace onap -f overrides.yaml
To get a summary of the status of all of the pods (containers) running in your
deployment::
@@ -174,9 +178,9 @@ deployment::
To install a specific version of a single ONAP component (`so` in this example)
-with the given name enter::
+with the given release name enter::
- > helm install onap/so --version 2.0.1 -n so
+ > helm deploy so onap/so --version 3.0.1
To display details of a specific resource or group of resources type::