Merge "[AAI] Add model-loader tracing config"
[oom.git] / docs / oom_quickstart_guide.rst
1 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
2 .. http://creativecommons.org/licenses/by/4.0
3 .. Copyright 2018 Amdocs, Bell Canada
4
5 .. _quick-start-label:
6
7 OOM Quick Start Guide
8 #####################
9
10 .. figure:: oomLogoV2-medium.png
11    :align: right
12
13 Once a kubernetes environment is available (follow the instructions in
14 :ref:`cloud-setup-guide-label` if you don't have a cloud environment
15 available), follow the following instructions to deploy ONAP.
16
17 **Step 1.** Clone the OOM repository from ONAP gerrit::
18
19   > git clone -b casablanca http://gerrit.onap.org/r/oom
20   > cd oom/kubernetes
21
22 **Step 2.** Install Helm Plugins required to deploy the ONAP Casablanca release::
23   sudo cp -R ~/oom/kubernetes/helm/plugins/ ~/.helm
24
25 **Step 3.** Customize the onap/values.yaml file to suit your deployment. You
26 may want to selectively enable or disable ONAP components by changing the
27 `enabled: true/false` flags as shown below:
28
29 .. literalinclude:: onap-values.yaml
30    :language: yaml
31
32 .. note::
33   To generate openStackEncryptedPasswordHere :
34
35   ``root@olc-rancher:~# cd so/resources/config/mso/``
36
37   ``root@olc-rancher:~/oom/kubernetes/so/resources/config/mso# echo -n "<openstack tenant password>" | openssl aes-128-ecb -e -K `cat encryption.key` -nosalt | xxd -c 256 -p``
38
39 **Step 3.** To setup a local Helm server to server up the ONAP charts::
40
41   > helm serve &
42
43 Note the port number that is listed and use it in the Helm repo add as
44 follows::
45
46   > helm repo add local http://127.0.0.1:8879
47
48 **Step 4.** Verify your Helm repository setup with::
49
50   > helm repo list
51   NAME   URL
52   local  http://127.0.0.1:8879
53
54 **Step 5.** Build a local Helm repository (from the kubernetes directory)::
55
56   > make all; make onap
57
58 **Step 6.** Display the charts that available to be deployed::
59
60   > helm search -l
61 .. literalinclude:: helm-search.txt
62
63 .. note::
64   The setup of the Helm repository is a one time activity. If you make changes to your deployment charts or values be sure to use `make` to update your local Helm repository.
65
66 **Step 7.** Once the repo is setup, installation of ONAP can be done with a
67 single command::
68
69   > helm deploy dev local/onap --namespace onap
70
71
72 Use the following to monitor your deployment and determine when ONAP is ready for use::
73
74   > kubectl get pods --all-namespaces -o=wide
75
76 Undeploying onap can be done using the following command::
77   > helm undeploy dev --purge
78
79
80 More examples of using the deploy and undeploy plugins can be found here: https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins