blob: 501deda7e48ccff497694e55e3d57ece1facb697 [file] [log] [blame]
Brian Freemancce79bd2019-04-17 10:34:32 -05001.. This work is licensed under a
2.. Creative Commons Attribution 4.0 International License.
Roger Maitland953b5f12018-03-22 15:24:04 -04003.. http://creativecommons.org/licenses/by/4.0
Mike Elliottf137b2c2019-04-30 16:28:07 -04004.. Copyright 2019 Amdocs, Bell Canada
Roger Maitland953b5f12018-03-22 15:24:04 -04005
6.. _quick-start-label:
7
8OOM Quick Start Guide
9#####################
10
11.. figure:: oomLogoV2-medium.png
12 :align: right
13
14Once a kubernetes environment is available (follow the instructions in
15:ref:`cloud-setup-guide-label` if you don't have a cloud environment
16available), follow the following instructions to deploy ONAP.
17
18**Step 1.** Clone the OOM repository from ONAP gerrit::
19
Mike Elliottf137b2c2019-04-30 16:28:07 -040020 > git clone -b 4.0.0-ONAP http://gerrit.onap.org/r/oom --recurse-submodules
Roger Maitlandd1237f32018-03-26 13:14:04 -040021 > cd oom/kubernetes
Roger Maitland953b5f12018-03-22 15:24:04 -040022
Mike Elliottf137b2c2019-04-30 16:28:07 -040023**Step 2.** Install Helm Plugins required to deploy ONAP::
Pawel Wieczorekaa859cd2019-01-23 17:32:18 +010024
25 > sudo cp -R ~/oom/kubernetes/helm/plugins/ ~/.helm
Roger Maitland953b5f12018-03-22 15:24:04 -040026
Brian Freemancce79bd2019-04-17 10:34:32 -050027
Mike Elliott474c3502019-05-09 10:56:16 -040028**Step 3.** Customize the helm charts like oom/kubernetes/onap/values.yaml or an override
29file like onap-all.yaml, onap-vfw.yaml or openstack.yaml file to suit your deployment with items like the
Brian Freemancce79bd2019-04-17 10:34:32 -050030OpenStack tenant information.
31
Mike Elliott474c3502019-05-09 10:56:16 -040032.. note::
33 Standard and example override files (e.g. onap-all.yaml, openstack.yaml) can be found in
34 the oom/kubernetes/onap/resources/overrides/ directory.
35
Brian Freemancce79bd2019-04-17 10:34:32 -050036
37 a. You may want to selectively enable or disable ONAP components by changing
38 the `enabled: true/false` flags.
39
40
41 b. Encyrpt the OpenStack password using the shell tool for robot and put it in
Mike Elliott474c3502019-05-09 10:56:16 -040042 the robot helm charts or robot section of openstack.yaml
Brian Freemancce79bd2019-04-17 10:34:32 -050043
44
45 c. Encrypt the OpenStack password using the java based script for SO helm charts
Mike Elliott474c3502019-05-09 10:56:16 -040046 or SO section of openstack.yaml.
Brian Freemancce79bd2019-04-17 10:34:32 -050047
48
49 d. Update the OpenStack parameters that will be used by robot, SO and APPC helm
50 charts or use an override file to replace them.
51
52
53
54
55a. Enabling/Disabling Components:
Mike Elliottf137b2c2019-04-30 16:28:07 -040056Here is an example of the nominal entries that need to be provided.
57We have different values file available for different contexts.
Roger Maitland953b5f12018-03-22 15:24:04 -040058
Mike Elliotted5ff712018-11-07 15:47:19 -050059.. literalinclude:: onap-values.yaml
60 :language: yaml
Roger Maitland953b5f12018-03-22 15:24:04 -040061
Brian Freemancce79bd2019-04-17 10:34:32 -050062
63b. Generating ROBOT Encrypted Password:
64The ROBOT encrypted Password uses the same encryption.key as SO but an
65openssl algorithm that works with the python based Robot Framework.
66
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000067.. note::
Brian Freemancce79bd2019-04-17 10:34:32 -050068 To generate ROBOT openStackEncryptedPasswordHere :
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000069
Mike Elliott474c3502019-05-09 10:56:16 -040070 ``cd so/resources/config/mso/``
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000071
Mike Elliott474c3502019-05-09 10:56:16 -040072 ``/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 +000073
Brian Freemancce79bd2019-04-17 10:34:32 -050074c. Generating SO Encrypted Password:
75The SO Encrypted Password uses a java based encryption utility since the
76Java encryption library is not easy to integrate with openssl/python that
77ROBOT uses in Dublin.
78
79.. note::
80 To generate SO openStackEncryptedPasswordHere :
81
82 SO_ENCRYPTION_KEY=`cat ~/oom/kubenertes/so/resources/config/mso/encrypt.key`
83 OS_PASSWORD=XXXX_OS_CLEARTESTPASSWORD_XXXX
84
85 git clone http://gerrit.onap.org/r/integration
86 cd integration/deployment/heat/onap-oom/scripts
87 javac Crypto.java
88 java Crypto "$OS_PASSWORD" "$SO_ENCRYPTION_KEY"
89
90
91d. Update the OpenStack parameters:
92
93.. literalinclude:: example-integration-override.yaml
94 :language: yaml
95
96**Step 4.** To setup a local Helm server to server up the ONAP charts::
Roger Maitland953b5f12018-03-22 15:24:04 -040097
98 > helm serve &
99
100Note the port number that is listed and use it in the Helm repo add as
101follows::
102
103 > helm repo add local http://127.0.0.1:8879
104
Brian Freemancce79bd2019-04-17 10:34:32 -0500105**Step 5.** Verify your Helm repository setup with::
Roger Maitland953b5f12018-03-22 15:24:04 -0400106
107 > helm repo list
108 NAME URL
109 local http://127.0.0.1:8879
110
Brian Freemancce79bd2019-04-17 10:34:32 -0500111**Step 6.** Build a local Helm repository (from the kubernetes directory)::
Roger Maitland9e5067c2018-03-27 10:57:08 -0400112
Mike Elliotted5ff712018-11-07 15:47:19 -0500113 > make all; make onap
Roger Maitland9e5067c2018-03-27 10:57:08 -0400114
Brian Freemancce79bd2019-04-17 10:34:32 -0500115**Step 7.** Display the onap charts that available to be deployed::
Roger Maitland953b5f12018-03-22 15:24:04 -0400116
Brian Freemancce79bd2019-04-17 10:34:32 -0500117 > helm search onap -l
118
Mike Elliotted5ff712018-11-07 15:47:19 -0500119.. literalinclude:: helm-search.txt
Roger Maitland953b5f12018-03-22 15:24:04 -0400120
121.. note::
Roger Maitlandd1237f32018-03-26 13:14:04 -0400122 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 -0400123
Brian Freemancce79bd2019-04-17 10:34:32 -0500124**Step 8.** Once the repo is setup, installation of ONAP can be done with a
125single command
Roger Maitland953b5f12018-03-22 15:24:04 -0400126
Mike Elliott474c3502019-05-09 10:56:16 -0400127.. note::
128 The --timeout 900 is currently required in Dublin to address long running initialization tasks
129 for DMaaP and SO. Without this timeout value both applications may fail to deploy.
Brian Freemancce79bd2019-04-17 10:34:32 -0500130
Mike Elliott474c3502019-05-09 10:56:16 -0400131 a. To deploy all ONAP applications use this command::
Roger Maitlandd1237f32018-03-26 13:14:04 -0400132
Mike Elliott474c3502019-05-09 10:56:16 -0400133 > cd oom/kubernetes
134 > helm deploy dev local/onap --namespace onap -f onap/resources/overrides/onap-all.yaml -f onap/resources/overrides/openstack.yaml --timeout 900
Roger Maitland953b5f12018-03-22 15:24:04 -0400135
Mike Elliott474c3502019-05-09 10:56:16 -0400136 b. If you are using a custom override (e.g. integration-override.yaml) use this command::
Brian Freemancce79bd2019-04-17 10:34:32 -0500137
Mike Elliott474c3502019-05-09 10:56:16 -0400138 > helm deploy dev local/onap -f /root/integration-override.yaml --namespace onap --timeout 900
Brian Freemancce79bd2019-04-17 10:34:32 -0500139
140
141 c. If you have a slower cloud environment you may want to use the public-cloud.yaml
142 which has longer delay intervals on database updates.::
143
Mike Elliott474c3502019-05-09 10:56:16 -0400144 > helm deploy dev local/onap -f /root/oom/kubernetes/onap/resources/environments/public-cloud.yaml -f /root/integration-override.yaml --namespace onap --timeout 900
Brian Freemancce79bd2019-04-17 10:34:32 -0500145
146
147**Step 9.** Commands to interact with the OOM installation
148
149Use the following to monitor your deployment and determine when ONAP is
150ready for use::
Roger Maitland953b5f12018-03-22 15:24:04 -0400151
Mike Elliott474c3502019-05-09 10:56:16 -0400152 > kubectl get pods -n onap -o=wide
Mike Elliotted5ff712018-11-07 15:47:19 -0500153
154Undeploying onap can be done using the following command::
Pawel Wieczorekaa859cd2019-01-23 17:32:18 +0100155
Mike Elliotted5ff712018-11-07 15:47:19 -0500156 > helm undeploy dev --purge
157
158
Brian Freemancce79bd2019-04-17 10:34:32 -0500159More examples of using the deploy and undeploy plugins can be found here: https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins