aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-02-09 11:47:39 +0100
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-02-09 11:53:55 +0100
commitbba1e249e30cd11552a21553b63881aac5fe1973 (patch)
tree4f6cb2c4274d9c9b6cf84c1496b17caa2d4e2b46 /docs
parentc9bbf685ff3056db137be5980e5ca1b4dbdaab7b (diff)
[DOCS] Fix Helm3 install guide in regard of "deploy" step
In contrary to helm v2 behaviour helm v3 does not automatically create namespace even if "--namespace" option is passed to it's "install" or "upgrade" subcommand. Additional flag "--create-namespace" has to be set. Alternatively namespace can be created manually before running "helm deploy" without that flag. Change-Id: I3c425667db3065e2aa04a8f140e1037d5080c96a Issue-ID: OOM-2562 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/oom_quickstart_guide_helm3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/oom_quickstart_guide_helm3.rst b/docs/oom_quickstart_guide_helm3.rst
index 5a3076426e..e4d4736fef 100644
--- a/docs/oom_quickstart_guide_helm3.rst
+++ b/docs/oom_quickstart_guide_helm3.rst
@@ -203,7 +203,7 @@ single command
To deploy all ONAP applications use this command::
> cd oom/kubernetes
- > helm deploy dev local/onap --namespace onap --set global.masterPassword=myAwesomePasswordThatINeedToChange -f onap/resources/overrides/onap-all.yaml -f onap/resources/overrides/environment.yaml -f onap/resources/overrides/openstack.yaml --timeout 900s
+ > helm deploy dev local/onap --namespace onap --create-namespace --set global.masterPassword=myAwesomePasswordThatINeedToChange -f onap/resources/overrides/onap-all.yaml -f onap/resources/overrides/environment.yaml -f onap/resources/overrides/openstack.yaml --timeout 900s
All override files may be customized (or replaced by other overrides) as per
needs.