blob: 5136e537f686852fb0ef366fc19d6da39ee4056b [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
Eric Debeau993b77b2020-08-19 15:30:00 +02004.. Copyright 2019-2020 Amdocs, Bell Canada, Orange, Samsung
Jessica Wagantallafb1ead2020-04-09 12:39:10 -07005.. _oom_quickstart_guide:
Roger Maitland953b5f12018-03-22 15:24:04 -04006.. _quick-start-label:
7
8OOM Quick Start Guide
9#####################
10
11.. figure:: oomLogoV2-medium.png
12 :align: right
13
Eric Debeau993b77b2020-08-19 15:30:00 +020014Once a Kubernetes environment is available (follow the instructions in
Roger Maitland953b5f12018-03-22 15:24:04 -040015: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 Elliotta6243a92019-10-01 13:19:31 -040020 > git clone -b <BRANCH> 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
Eric Debeau993b77b2020-08-19 15:30:00 +020023where <BRANCH> can be an official release tag, such as
Sylvain Desbureaux571173b2020-06-16 15:13:53 +020024
25* 4.0.0-ONAP for Dublin
26* 5.0.1-ONAP for El Alto
27* 6.0.0 for Frankfurt
Sylvain Desbureaux4f9902b2020-11-25 08:34:55 +010028* 7.0.0 for Guilin
Sylvain Desbureaux557628a2021-03-24 14:59:16 +010029* 8.0.0 for Honolulu
Mike Elliotta6243a92019-10-01 13:19:31 -040030
Mike Elliottf137b2c2019-04-30 16:28:07 -040031**Step 2.** Install Helm Plugins required to deploy ONAP::
Pawel Wieczorekaa859cd2019-01-23 17:32:18 +010032
Sylvain Desbureaux557628a2021-03-24 14:59:16 +010033 > cp -R ~/oom/kubernetes/helm/plugins/ ~/.local/share/helm/plugins
34 > helm plugin install https://github.com/chartmuseum/helm-push.git
Roger Maitland953b5f12018-03-22 15:24:04 -040035
Sylvain Desbureaux557628a2021-03-24 14:59:16 +010036**Step 3** Install Chartmuseum::
Brian Freemancce79bd2019-04-17 10:34:32 -050037
Sylvain Desbureaux557628a2021-03-24 14:59:16 +010038 > curl -LO https://s3.amazonaws.com/chartmuseum/release/latest/bin/linux/amd64/chartmuseum
39 > chmod +x ./chartmuseum
40 > mv ./chartmuseum /usr/local/bin
41
42**Step 4.** Customize the Helm charts like `oom/kubernetes/onap/values.yaml` or
Eric Debeau993b77b2020-08-19 15:30:00 +020043an override file like `onap-all.yaml`, `onap-vfw.yaml` or `openstack.yaml` file
44to suit your deployment with items like the OpenStack tenant information.
Brian Freemancce79bd2019-04-17 10:34:32 -050045
Mike Elliott474c3502019-05-09 10:56:16 -040046.. note::
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010047 Standard and example override files (e.g. `onap-all.yaml`, `openstack.yaml`) can be found in
48 the `oom/kubernetes/onap/resources/overrides/` directory.
Mike Elliott474c3502019-05-09 10:56:16 -040049
Brian Freemancce79bd2019-04-17 10:34:32 -050050
51 a. You may want to selectively enable or disable ONAP components by changing
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010052 the ``enabled: true/false`` flags.
Brian Freemancce79bd2019-04-17 10:34:32 -050053
54
Eric Debeau993b77b2020-08-19 15:30:00 +020055 b. Encrypt the OpenStack password using the shell tool for Robot and put it in
56 the Robot Helm charts or Robot section of `openstack.yaml`
Brian Freemancce79bd2019-04-17 10:34:32 -050057
58
Eric Debeau993b77b2020-08-19 15:30:00 +020059 c. Encrypt the OpenStack password using the java based script for SO Helm charts
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010060 or SO section of `openstack.yaml`.
Brian Freemancce79bd2019-04-17 10:34:32 -050061
62
Eric Debeau993b77b2020-08-19 15:30:00 +020063 d. Update the OpenStack parameters that will be used by Robot, SO and APPC Helm
Brian Freemancce79bd2019-04-17 10:34:32 -050064 charts or use an override file to replace them.
65
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +020066 e. Add in the command line a value for the global master password (global.masterPassword).
Brian Freemancce79bd2019-04-17 10:34:32 -050067
68
69
70a. Enabling/Disabling Components:
Mike Elliottf137b2c2019-04-30 16:28:07 -040071Here is an example of the nominal entries that need to be provided.
72We have different values file available for different contexts.
Roger Maitland953b5f12018-03-22 15:24:04 -040073
Pawel Wieczoreka1903d62019-11-14 14:19:59 +010074.. literalinclude:: ../kubernetes/onap/values.yaml
Mike Elliotted5ff712018-11-07 15:47:19 -050075 :language: yaml
Roger Maitland953b5f12018-03-22 15:24:04 -040076
Brian Freemancce79bd2019-04-17 10:34:32 -050077
78b. Generating ROBOT Encrypted Password:
Eric Debeau993b77b2020-08-19 15:30:00 +020079The Robot encrypted Password uses the same encryption.key as SO but an
Brian Freemancce79bd2019-04-17 10:34:32 -050080openssl algorithm that works with the python based Robot Framework.
81
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000082.. note::
Eric Debeau993b77b2020-08-19 15:30:00 +020083 To generate Robot ``openStackEncryptedPasswordHere``::
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000084
Pawel Wieczorekd7a30352019-11-14 16:29:59 +010085 cd so/resources/config/mso/
86 /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 +000087
Brian Freemancce79bd2019-04-17 10:34:32 -050088c. Generating SO Encrypted Password:
89The SO Encrypted Password uses a java based encryption utility since the
90Java encryption library is not easy to integrate with openssl/python that
Eric Debeau993b77b2020-08-19 15:30:00 +020091Robot uses in Dublin and upper versions.
Brian Freemancce79bd2019-04-17 10:34:32 -050092
93.. note::
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010094 To generate SO ``openStackEncryptedPasswordHere`` and ``openStackSoEncryptedPassword``
95 ensure `default-jdk` is installed::
Brian Freemancce79bd2019-04-17 10:34:32 -050096
Sylvain Desbureaux557628a2021-03-24 14:59:16 +010097 apt-get update; apt-get install default-jdk
Brian Freemanacf8cd82019-07-11 21:52:46 -050098
Pawel Wieczorekd7a30352019-11-14 16:29:59 +010099 Then execute::
Brian Freemancce79bd2019-04-17 10:34:32 -0500100
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100101 SO_ENCRYPTION_KEY=`cat ~/oom/kubernetes/so/resources/config/mso/encryption.key`
102 OS_PASSWORD=XXXX_OS_CLEARTESTPASSWORD_XXXX
Mike Elliottdb271822019-06-06 08:06:19 -0400103
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100104 git clone http://gerrit.onap.org/r/integration
105 cd integration/deployment/heat/onap-rke/scripts
Brian Freemanacf8cd82019-07-11 21:52:46 -0500106
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100107 javac Crypto.java
108 java Crypto "$OS_PASSWORD" "$SO_ENCRYPTION_KEY"
Brian Freemancce79bd2019-04-17 10:34:32 -0500109
110d. Update the OpenStack parameters:
111
Eric Debeau993b77b2020-08-19 15:30:00 +0200112There are assumptions in the demonstration VNF Heat templates about the
113networking available in the environment. To get the most value out of these
114templates and the automation that can help confirm the setup is correct, please
115observe the following constraints.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500116
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200117
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100118``openStackPublicNetId:``
Eric Debeau993b77b2020-08-19 15:30:00 +0200119 This network should allow Heat templates to add interfaces.
120 This need not be an external network, floating IPs can be assigned to the
121 ports on the VMs that are created by the heat template but its important that
122 neutron allow ports to be created on them.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500123
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100124``openStackPrivateNetCidr: "10.0.0.0/16"``
Eric Debeau993b77b2020-08-19 15:30:00 +0200125 This ip address block is used to assign OA&M addresses on VNFs to allow ONAP
126 connectivity. The demonstration Heat templates assume that 10.0 prefix can be
127 used by the VNFs and the demonstration ip addressing plan embodied in the
128 preload template prevent conflicts when instantiating the various VNFs. If
129 you need to change this, you will need to modify the preload data in the
130 Robot Helm chart like integration_preload_parameters.py and the
131 demo/heat/preload_data in the Robot container. The size of the CIDR should
132 be sufficient for ONAP and the VMs you expect to create.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500133
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100134``openStackOamNetworkCidrPrefix: "10.0"``
Eric Debeau993b77b2020-08-19 15:30:00 +0200135 This ip prefix mush match the openStackPrivateNetCidr and is a helper
136 variable to some of the Robot scripts for demonstration. A production
137 deployment need not worry about this setting but for the demonstration VNFs
138 the ip asssignment strategy assumes 10.0 ip prefix.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500139
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200140Example Keystone v2.0
Pawel Wieczorek3c7c6c72019-11-14 15:53:52 +0100141
Brian Freemancce79bd2019-04-17 10:34:32 -0500142.. literalinclude:: example-integration-override.yaml
143 :language: yaml
144
Brian Freemanacf8cd82019-07-11 21:52:46 -0500145Example Keystone v3 (required for Rocky and later releases)
Pawel Wieczorek3c7c6c72019-11-14 15:53:52 +0100146
Brian Freemanacf8cd82019-07-11 21:52:46 -0500147.. literalinclude:: example-integration-override-v3.yaml
148 :language: yaml
149
150
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100151**Step 5.** To setup a local Helm server to server up the ONAP charts::
Roger Maitland953b5f12018-03-22 15:24:04 -0400152
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100153 > chartmuseum --storage local --storage-local-rootdir ~/helm3-storage -port 8879 &
Roger Maitland953b5f12018-03-22 15:24:04 -0400154
155Note the port number that is listed and use it in the Helm repo add as
156follows::
157
158 > helm repo add local http://127.0.0.1:8879
159
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100160**Step 6.** Verify your Helm repository setup with::
Roger Maitland953b5f12018-03-22 15:24:04 -0400161
162 > helm repo list
163 NAME URL
164 local http://127.0.0.1:8879
165
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100166**Step 7.** Build a local Helm repository (from the kubernetes directory)::
Roger Maitland9e5067c2018-03-27 10:57:08 -0400167
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100168 > make SKIP_LINT=TRUE [HELM_BIN=<HELM_PATH>] all ; make SKIP_LINT=TRUE [HELM_BIN=<HELM_PATH>] onap
Jakub Latusekdb52a6d2020-10-15 15:02:47 +0200169
170`HELM_BIN`
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100171 Sets the helm binary to be used. The default value use helm from PATH
Roger Maitland9e5067c2018-03-27 10:57:08 -0400172
Roger Maitland953b5f12018-03-22 15:24:04 -0400173
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100174**Step 8.** Display the onap charts that available to be deployed::
175
176 > helm repo update
177 > helm search repo onap
Brian Freemancce79bd2019-04-17 10:34:32 -0500178
Mike Elliotted5ff712018-11-07 15:47:19 -0500179.. literalinclude:: helm-search.txt
Roger Maitland953b5f12018-03-22 15:24:04 -0400180
181.. note::
Eric Debeau993b77b2020-08-19 15:30:00 +0200182 The setup of the Helm repository is a one time activity. If you make changes
183 to your deployment charts or values be sure to use ``make`` to update your
184 local Helm repository.
Roger Maitland953b5f12018-03-22 15:24:04 -0400185
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100186**Step 9.** Once the repo is setup, installation of ONAP can be done with a
Brian Freemancce79bd2019-04-17 10:34:32 -0500187single command
Roger Maitland953b5f12018-03-22 15:24:04 -0400188
Mike Elliott474c3502019-05-09 10:56:16 -0400189.. note::
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100190 The ``--timeout 900s`` is currently required in Dublin and later
191 versions up to address long running initialization tasks for DMaaP
192 and SO. Without this timeout value both applications may fail to
193 deploy.
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200194
195.. danger::
196 We've added the master password on the command line.
197 You shouldn't put it in a file for safety reason
198 please don't forget to change the value to something random
199
200 A space is also added in front of the command so "history" doesn't catch it.
201 This masterPassword is very sensitive, please be careful!
202
Brian Freemancce79bd2019-04-17 10:34:32 -0500203
Mike Elliott895ddcb2019-07-09 10:47:08 -0400204To deploy all ONAP applications use this command::
Roger Maitlandd1237f32018-03-26 13:14:04 -0400205
Mike Elliott474c3502019-05-09 10:56:16 -0400206 > cd oom/kubernetes
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100207 > 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
Roger Maitland953b5f12018-03-22 15:24:04 -0400208
Eric Debeau993b77b2020-08-19 15:30:00 +0200209All override files may be customized (or replaced by other overrides) as per
210needs.
Brian Freemancce79bd2019-04-17 10:34:32 -0500211
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100212`onap-all.yaml`
Eric Debeau993b77b2020-08-19 15:30:00 +0200213 Enables the modules in the ONAP deployment. As ONAP is very modular, it is
214 possible to customize ONAP and disable some components through this
215 configuration file.
Brian Freemancce79bd2019-04-17 10:34:32 -0500216
Lucjan Bryndza3fdabf42020-05-06 11:03:03 +0000217`onap-all-ingress-nginx-vhost.yaml`
Eric Debeau993b77b2020-08-19 15:30:00 +0200218 Alternative version of the `onap-all.yaml` but with global ingress controller
219 enabled. It requires the cluster configured with the nginx ingress controller
220 and load balancer. Please use this file instead `onap-all.yaml` if you want
221 to use experimental ingress controller feature.
Lucjan Bryndza3fdabf42020-05-06 11:03:03 +0000222
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100223`environment.yaml`
Mike Elliott895ddcb2019-07-09 10:47:08 -0400224 Includes configuration values specific to the deployment environment.
225
Eric Debeau993b77b2020-08-19 15:30:00 +0200226 Example: adapt readiness and liveness timers to the level of performance of
227 your infrastructure
Mike Elliott895ddcb2019-07-09 10:47:08 -0400228
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100229`openstack.yaml`
Eric Debeau993b77b2020-08-19 15:30:00 +0200230 Includes all the OpenStack related information for the default target tenant
231 you want to use to deploy VNFs from ONAP and/or additional parameters for the
232 embedded tests.
Mike Elliott895ddcb2019-07-09 10:47:08 -0400233
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100234**Step 10.** Verify ONAP installation
Mike Elliott895ddcb2019-07-09 10:47:08 -0400235
Eric Debeau993b77b2020-08-19 15:30:00 +0200236Use the following to monitor your deployment and determine when ONAP is ready
237for use::
Roger Maitland953b5f12018-03-22 15:24:04 -0400238
Mike Elliott474c3502019-05-09 10:56:16 -0400239 > kubectl get pods -n onap -o=wide
Mike Elliotted5ff712018-11-07 15:47:19 -0500240
Mike Elliott895ddcb2019-07-09 10:47:08 -0400241.. note::
242 While all pods may be in a Running state, it is not a guarantee that all components are running fine.
Pawel Wieczorekaa859cd2019-01-23 17:32:18 +0100243
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100244 Launch the healthcheck tests using Robot to verify that the components are healthy::
Mike Elliotted5ff712018-11-07 15:47:19 -0500245
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100246 > ~/oom/kubernetes/robot/ete-k8s.sh onap health
Mike Elliott895ddcb2019-07-09 10:47:08 -0400247
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100248**Step 11.** Undeploy ONAP
Eric Debeau993b77b2020-08-19 15:30:00 +0200249::
Mike Elliott895ddcb2019-07-09 10:47:08 -0400250
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100251 > helm undeploy dev
ramagp302ce4f2020-08-18 08:09:16 +0000252
Brian Freemancce79bd2019-04-17 10:34:32 -0500253More examples of using the deploy and undeploy plugins can be found here: https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins