docs: Ensure literalinclude directive rendering
[oom.git] / docs / oom_quickstart_guide.rst
1 .. This work is licensed under a
2 .. Creative Commons Attribution 4.0 International License.
3 .. http://creativecommons.org/licenses/by/4.0
4 .. Copyright 2019 Amdocs, Bell Canada
5
6 .. _quick-start-label:
7
8 OOM Quick Start Guide
9 #####################
10
11 .. figure:: oomLogoV2-medium.png
12    :align: right
13
14 Once a kubernetes environment is available (follow the instructions in
15 :ref:`cloud-setup-guide-label` if you don't have a cloud environment
16 available), follow the following instructions to deploy ONAP.
17
18 **Step 1.** Clone the OOM repository from ONAP gerrit::
19
20   > git clone -b <BRANCH> http://gerrit.onap.org/r/oom --recurse-submodules
21   > cd oom/kubernetes
22
23 where <BRANCH> can be an offical release tag, such as
24 4.0.0-ONAP for Dublin
25 5.0.1-ONAP for El Alto
26
27 **Step 2.** Install Helm Plugins required to deploy ONAP::
28
29   > sudo cp -R ~/oom/kubernetes/helm/plugins/ ~/.helm
30
31
32 **Step 3.** Customize the helm charts like oom/kubernetes/onap/values.yaml or an override
33 file like onap-all.yaml, onap-vfw.yaml or openstack.yaml file to suit your deployment with items like the
34 OpenStack tenant information.
35
36 .. note::
37   Standard and example override files (e.g. onap-all.yaml, openstack.yaml) can be found in
38   the oom/kubernetes/onap/resources/overrides/ directory.
39
40
41  a. You may want to selectively enable or disable ONAP components by changing
42     the `enabled: true/false` flags.
43
44
45  b. Encyrpt the OpenStack password using the shell tool for robot and put it in
46     the robot helm charts or robot section of openstack.yaml
47
48
49  c. Encrypt the OpenStack password using the java based script for SO helm charts
50     or SO section of openstack.yaml.
51
52
53  d. Update the OpenStack parameters that will be used by robot, SO and APPC helm
54     charts or use an override file to replace them.
55
56
57
58
59 a. Enabling/Disabling Components:
60 Here is an example of the nominal entries that need to be provided.
61 We have different values file available for different contexts.
62
63 .. literalinclude:: ../kubernetes/onap/values.yaml
64    :language: yaml
65
66
67 b. Generating ROBOT Encrypted Password:
68 The ROBOT encrypted Password uses the same encryption.key as SO but an
69 openssl algorithm that works with the python based Robot Framework.
70
71 .. note::
72   To generate ROBOT openStackEncryptedPasswordHere :
73
74   ``cd so/resources/config/mso/``
75
76   ``/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``
77
78 c. Generating SO Encrypted Password:
79 The SO Encrypted Password uses a java based encryption utility since the
80 Java encryption library is not easy to integrate with openssl/python that
81 ROBOT uses in Dublin.
82
83 .. note::
84   To generate SO openStackEncryptedPasswordHere and openStackSoEncryptedPassword:
85
86   SO_ENCRYPTION_KEY=`cat ~/oom/kubernetes/so/resources/config/mso/encryption.key`
87
88   OS_PASSWORD=XXXX_OS_CLEARTESTPASSWORD_XXXX
89
90   git clone http://gerrit.onap.org/r/integration
91
92   cd integration/deployment/heat/onap-rke/scripts
93
94
95   javac Crypto.java
96
97   [ if javac is not installed 'apt-get update ; apt-get install default-jdk' ]
98
99   java Crypto "$OS_PASSWORD" "$SO_ENCRYPTION_KEY"
100
101
102 d. Update the OpenStack parameters:
103
104 There are assumptions in the demonstration VNF heat templates about the networking 
105 available in the environment. To get the most value out of these templates and the 
106 automation that can help confirm the setup is correct, please observe the following 
107 constraints.
108
109 openStackPublicNetId: 
110
111 This network should allow heat templates to add interfaces. 
112 This need not be an external network, floating IPs can be assigned to the ports on 
113 the VMs that are created by the heat template but its important that neutron allow 
114 ports to be created on them.
115
116 openStackPrivateNetCidr: "10.0.0.0/16"
117
118 This ip address block is used to assign OA&M addresses on VNFs to allow ONAP connectivity.
119 The demonstration heat templates assume that 10.0 prefix can be used by the VNFs and the 
120 demonstration ip addressing plan embodied in the preload template prevent conflicts when 
121 instantiating the various VNFs. If you need to change this, you will need to modify the preload 
122 data in the robot helm chart like integration_preload_parametes.py and the demo/heat/preload_data 
123 in the robot container. The size of the CIDR should be sufficient for ONAP and the VMs you expect 
124 to create.
125
126 openStackOamNetworkCidrPrefix: "10.0"
127
128 This ip prefix mush match the openStackPrivateNetCidr and is a helper variable to some of the
129 robot scripts for demonstration. A production deployment need not worry about this
130 setting but for the demonstration VNFs the ip asssignment strategy assumes 10.0 ip prefix.
131
132
133 Example Keystone v2.0 
134
135 .. literalinclude:: example-integration-override.yaml
136    :language: yaml
137
138 Example Keystone v3  (required for Rocky and later releases)
139
140 .. literalinclude:: example-integration-override-v3.yaml
141    :language: yaml
142
143
144
145 **Step 4.** To setup a local Helm server to server up the ONAP charts::
146
147   > helm serve &
148
149 Note the port number that is listed and use it in the Helm repo add as
150 follows::
151
152   > helm repo add local http://127.0.0.1:8879
153
154 **Step 5.** Verify your Helm repository setup with::
155
156   > helm repo list
157   NAME   URL
158   local  http://127.0.0.1:8879
159
160 **Step 6.** Build a local Helm repository (from the kubernetes directory)::
161
162   > make all; make onap
163
164 **Step 7.** Display the onap charts that available to be deployed::
165
166   > helm search onap -l
167
168 .. literalinclude:: helm-search.txt
169
170 .. note::
171   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.
172
173 **Step 8.** Once the repo is setup, installation of ONAP can be done with a
174 single command
175
176 .. note::
177   The --timeout 900 is currently required in Dublin to address long running initialization tasks
178   for DMaaP and SO. Without this timeout value both applications may fail to deploy.
179
180 To deploy all ONAP applications use this command::
181
182     > cd oom/kubernetes
183     > helm deploy dev local/onap --namespace onap -f onap/resources/overrides/onap-all.yaml -f onap/resources/overrides/environment.yaml -f onap/resources/overrides/openstack.yaml --timeout 900
184
185 All override files may be customized (or replaced by other overrides) as per needs.
186
187 onap-all.yaml
188
189   Enables the modules in the ONAP deployment. As ONAP is very modular, it is possible to customize ONAP and disable some components through this configuration file.
190
191 environment.yaml
192
193   Includes configuration values specific to the deployment environment.
194
195   Example: adapt readiness and liveness timers to the level of performance of your infrastructure
196
197 openstack.yaml
198
199   Includes all the Openstack related information for the default target tenant you want to use to deploy VNFs from ONAP and/or additional parameters for the embedded tests.
200
201 **Step 9.** Verify ONAP installation
202
203 Use the following to monitor your deployment and determine when ONAP is ready for use::
204
205   > kubectl get pods -n onap -o=wide
206
207 .. note::
208   While all pods may be in a Running state, it is not a guarantee that all components are running fine.
209
210   Launch the healthcheck tests using Robot to verify that the components are healthy.
211
212   > ~/oom/kubernetes/robot/ete-k8s.sh onap health
213
214 **Step 10.** Undeploy ONAP
215
216 > helm undeploy dev --purge
217
218 More examples of using the deploy and undeploy plugins can be found here: https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins