blob: 0029d5fb9aac6d9ae0484462ae566f3468e378d7 [file] [log] [blame]
Roger Maitland953b5f12018-03-22 15:24:04 -04001.. 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
7OOM Quick Start Guide
8#####################
9
10.. figure:: oomLogoV2-medium.png
11 :align: right
12
13Once a kubernetes environment is available (follow the instructions in
14:ref:`cloud-setup-guide-label` if you don't have a cloud environment
15available), follow the following instructions to deploy ONAP.
16
17**Step 1.** Clone the OOM repository from ONAP gerrit::
18
Mike Elliotted5ff712018-11-07 15:47:19 -050019 > git clone -b casablanca http://gerrit.onap.org/r/oom
Roger Maitlandd1237f32018-03-26 13:14:04 -040020 > cd oom/kubernetes
Roger Maitland953b5f12018-03-22 15:24:04 -040021
Mike Elliotted5ff712018-11-07 15:47:19 -050022**Step 2.** Install Helm Plugins required to deploy the ONAP Casablanca release::
23 sudo cp -R ~/oom/kubernetes/helm/plugins/ ~/.helm
Roger Maitland953b5f12018-03-22 15:24:04 -040024
Mike Elliotted5ff712018-11-07 15:47:19 -050025**Step 3.** Customize the onap/values.yaml file to suit your deployment. You
Roger Maitland953b5f12018-03-22 15:24:04 -040026may want to selectively enable or disable ONAP components by changing the
27`enabled: true/false` flags as shown below:
28
Mike Elliotted5ff712018-11-07 15:47:19 -050029.. literalinclude:: onap-values.yaml
30 :language: yaml
Roger Maitland953b5f12018-03-22 15:24:04 -040031
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000032.. note::
33 To generate openStackEncryptedPasswordHere :
34
Abdelmuhaimen Seaudi5bf66782018-07-26 13:38:17 +000035 ``root@olc-rancher:~# cd so/resources/config/mso/``
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000036
Abdelmuhaimen Seaudi5bf66782018-07-26 13:38:17 +000037 ``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``
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000038
Roger Maitland9e5067c2018-03-27 10:57:08 -040039**Step 3.** To setup a local Helm server to server up the ONAP charts::
Roger Maitland953b5f12018-03-22 15:24:04 -040040
41 > helm serve &
42
43Note the port number that is listed and use it in the Helm repo add as
44follows::
45
46 > helm repo add local http://127.0.0.1:8879
47
Roger Maitland9e5067c2018-03-27 10:57:08 -040048**Step 4.** Verify your Helm repository setup with::
Roger Maitland953b5f12018-03-22 15:24:04 -040049
50 > helm repo list
51 NAME URL
52 local http://127.0.0.1:8879
53
Roger Maitland9e5067c2018-03-27 10:57:08 -040054**Step 5.** Build a local Helm repository (from the kubernetes directory)::
55
Mike Elliotted5ff712018-11-07 15:47:19 -050056 > make all; make onap
Roger Maitland9e5067c2018-03-27 10:57:08 -040057
Roger Maitland953b5f12018-03-22 15:24:04 -040058**Step 6.** Display the charts that available to be deployed::
59
60 > helm search -l
Mike Elliotted5ff712018-11-07 15:47:19 -050061.. literalinclude:: helm-search.txt
Roger Maitland953b5f12018-03-22 15:24:04 -040062
63.. note::
Roger Maitlandd1237f32018-03-26 13:14:04 -040064 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.
Roger Maitland953b5f12018-03-22 15:24:04 -040065
66**Step 7.** Once the repo is setup, installation of ONAP can be done with a
67single command::
68
Mike Elliotted5ff712018-11-07 15:47:19 -050069 > helm deploy dev local/onap --namespace onap
Roger Maitlandd1237f32018-03-26 13:14:04 -040070
Roger Maitland953b5f12018-03-22 15:24:04 -040071
72Use the following to monitor your deployment and determine when ONAP is ready for use::
73
74 > kubectl get pods --all-namespaces -o=wide
Mike Elliotted5ff712018-11-07 15:47:19 -050075
76Undeploying onap can be done using the following command::
77 > helm undeploy dev --purge
78
79
80More examples of using the deploy and undeploy plugins can be found here: https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins