blob: 78af1918723898d3302e8f28d230b4522deb076b [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
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
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 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
Mike Elliott1f34c062019-10-03 15:28:45 -040023where <BRANCH> can be an offical 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
Mike Elliotta6243a92019-10-01 13:19:31 -040028
Mike Elliottf137b2c2019-04-30 16:28:07 -040029**Step 2.** Install Helm Plugins required to deploy ONAP::
Pawel Wieczorekaa859cd2019-01-23 17:32:18 +010030
31 > sudo cp -R ~/oom/kubernetes/helm/plugins/ ~/.helm
Roger Maitland953b5f12018-03-22 15:24:04 -040032
Brian Freemancce79bd2019-04-17 10:34:32 -050033
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010034**Step 3.** Customize the helm charts like `oom/kubernetes/onap/values.yaml` or an override
35file like `onap-all.yaml`, `onap-vfw.yaml` or `openstack.yaml` file to suit your deployment
36with items like the OpenStack tenant information.
Brian Freemancce79bd2019-04-17 10:34:32 -050037
Mike Elliott474c3502019-05-09 10:56:16 -040038.. note::
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010039 Standard and example override files (e.g. `onap-all.yaml`, `openstack.yaml`) can be found in
40 the `oom/kubernetes/onap/resources/overrides/` directory.
Mike Elliott474c3502019-05-09 10:56:16 -040041
Brian Freemancce79bd2019-04-17 10:34:32 -050042
43 a. You may want to selectively enable or disable ONAP components by changing
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010044 the ``enabled: true/false`` flags.
Brian Freemancce79bd2019-04-17 10:34:32 -050045
46
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010047 b. Encrypt the OpenStack password using the shell tool for robot and put it in
48 the robot helm charts or robot section of `openstack.yaml`
Brian Freemancce79bd2019-04-17 10:34:32 -050049
50
51 c. Encrypt the OpenStack password using the java based script for SO helm charts
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010052 or SO section of `openstack.yaml`.
Brian Freemancce79bd2019-04-17 10:34:32 -050053
54
55 d. Update the OpenStack parameters that will be used by robot, SO and APPC helm
56 charts or use an override file to replace them.
57
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +020058 e. Add in the command line a value for the global master password (global.masterPassword).
Brian Freemancce79bd2019-04-17 10:34:32 -050059
60
61
62a. Enabling/Disabling Components:
Mike Elliottf137b2c2019-04-30 16:28:07 -040063Here is an example of the nominal entries that need to be provided.
64We have different values file available for different contexts.
Roger Maitland953b5f12018-03-22 15:24:04 -040065
Pawel Wieczoreka1903d62019-11-14 14:19:59 +010066.. literalinclude:: ../kubernetes/onap/values.yaml
Mike Elliotted5ff712018-11-07 15:47:19 -050067 :language: yaml
Roger Maitland953b5f12018-03-22 15:24:04 -040068
Brian Freemancce79bd2019-04-17 10:34:32 -050069
70b. Generating ROBOT Encrypted Password:
71The ROBOT encrypted Password uses the same encryption.key as SO but an
72openssl algorithm that works with the python based Robot Framework.
73
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000074.. note::
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010075 To generate ROBOT ``openStackEncryptedPasswordHere``::
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000076
Pawel Wieczorekd7a30352019-11-14 16:29:59 +010077 cd so/resources/config/mso/
78 /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 +000079
Brian Freemancce79bd2019-04-17 10:34:32 -050080c. Generating SO Encrypted Password:
81The SO Encrypted Password uses a java based encryption utility since the
82Java encryption library is not easy to integrate with openssl/python that
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +020083ROBOT uses in Dublin and upper versions.
Brian Freemancce79bd2019-04-17 10:34:32 -050084
85.. note::
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010086 To generate SO ``openStackEncryptedPasswordHere`` and ``openStackSoEncryptedPassword``
87 ensure `default-jdk` is installed::
Brian Freemancce79bd2019-04-17 10:34:32 -050088
Pawel Wieczorekd7a30352019-11-14 16:29:59 +010089 apt-get update; apt-get install default-jdk
Brian Freemanacf8cd82019-07-11 21:52:46 -050090
Pawel Wieczorekd7a30352019-11-14 16:29:59 +010091 Then execute::
Brian Freemancce79bd2019-04-17 10:34:32 -050092
Pawel Wieczorekd7a30352019-11-14 16:29:59 +010093 SO_ENCRYPTION_KEY=`cat ~/oom/kubernetes/so/resources/config/mso/encryption.key`
94 OS_PASSWORD=XXXX_OS_CLEARTESTPASSWORD_XXXX
Mike Elliottdb271822019-06-06 08:06:19 -040095
Pawel Wieczorekd7a30352019-11-14 16:29:59 +010096 git clone http://gerrit.onap.org/r/integration
97 cd integration/deployment/heat/onap-rke/scripts
Brian Freemanacf8cd82019-07-11 21:52:46 -050098
Pawel Wieczorekd7a30352019-11-14 16:29:59 +010099 javac Crypto.java
100 java Crypto "$OS_PASSWORD" "$SO_ENCRYPTION_KEY"
Brian Freemancce79bd2019-04-17 10:34:32 -0500101
102d. Update the OpenStack parameters:
103
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200104There are assumptions in the demonstration VNF heat templates about the networking
105available in the environment. To get the most value out of these templates and the
106automation that can help confirm the setup is correct, please observe the following
Brian Freemanacf8cd82019-07-11 21:52:46 -0500107constraints.
108
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200109
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100110``openStackPublicNetId:``
Pawel Wieczorek63d70fd2019-11-14 18:32:57 +0100111 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.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500115
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100116``openStackPrivateNetCidr: "10.0.0.0/16"``
Pawel Wieczorek63d70fd2019-11-14 18:32:57 +0100117 This ip address block is used to assign OA&M addresses on VNFs to allow ONAP connectivity.
118 The demonstration heat templates assume that 10.0 prefix can be used by the VNFs and the
119 demonstration ip addressing plan embodied in the preload template prevent conflicts when
120 instantiating the various VNFs. If you need to change this, you will need to modify the preload
121 data in the robot helm chart like integration_preload_parametes.py and the demo/heat/preload_data
122 in the robot container. The size of the CIDR should be sufficient for ONAP and the VMs you expect
123 to create.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500124
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100125``openStackOamNetworkCidrPrefix: "10.0"``
Pawel Wieczorek63d70fd2019-11-14 18:32:57 +0100126 This ip prefix mush match the openStackPrivateNetCidr and is a helper variable to some of the
127 robot scripts for demonstration. A production deployment need not worry about this
128 setting but for the demonstration VNFs the ip asssignment strategy assumes 10.0 ip prefix.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500129
130
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200131Example Keystone v2.0
Pawel Wieczorek3c7c6c72019-11-14 15:53:52 +0100132
Brian Freemancce79bd2019-04-17 10:34:32 -0500133.. literalinclude:: example-integration-override.yaml
134 :language: yaml
135
Brian Freemanacf8cd82019-07-11 21:52:46 -0500136Example Keystone v3 (required for Rocky and later releases)
Pawel Wieczorek3c7c6c72019-11-14 15:53:52 +0100137
Brian Freemanacf8cd82019-07-11 21:52:46 -0500138.. literalinclude:: example-integration-override-v3.yaml
139 :language: yaml
140
141
Brian Freemancce79bd2019-04-17 10:34:32 -0500142**Step 4.** To setup a local Helm server to server up the ONAP charts::
Roger Maitland953b5f12018-03-22 15:24:04 -0400143
144 > helm serve &
145
146Note the port number that is listed and use it in the Helm repo add as
147follows::
148
149 > helm repo add local http://127.0.0.1:8879
150
Brian Freemancce79bd2019-04-17 10:34:32 -0500151**Step 5.** Verify your Helm repository setup with::
Roger Maitland953b5f12018-03-22 15:24:04 -0400152
153 > helm repo list
154 NAME URL
155 local http://127.0.0.1:8879
156
Brian Freemancce79bd2019-04-17 10:34:32 -0500157**Step 6.** Build a local Helm repository (from the kubernetes directory)::
Roger Maitland9e5067c2018-03-27 10:57:08 -0400158
Sylvain Desbureauxdd769782020-05-29 11:19:42 +0200159 > make SKIP_LINT=TRUE all; make SKIP_LINT=TRUE onap
Roger Maitland9e5067c2018-03-27 10:57:08 -0400160
Brian Freemancce79bd2019-04-17 10:34:32 -0500161**Step 7.** Display the onap charts that available to be deployed::
Roger Maitland953b5f12018-03-22 15:24:04 -0400162
Brian Freemancce79bd2019-04-17 10:34:32 -0500163 > helm search onap -l
164
Mike Elliotted5ff712018-11-07 15:47:19 -0500165.. literalinclude:: helm-search.txt
Roger Maitland953b5f12018-03-22 15:24:04 -0400166
167.. note::
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100168 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 -0400169
Brian Freemancce79bd2019-04-17 10:34:32 -0500170**Step 8.** Once the repo is setup, installation of ONAP can be done with a
171single command
Roger Maitland953b5f12018-03-22 15:24:04 -0400172
Mike Elliott474c3502019-05-09 10:56:16 -0400173.. note::
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200174 The ``--timeout 900`` is currently required in Dublin and up to address long
175 running initialization tasks for DMaaP and SO. Without this timeout value both
176 applications may fail to deploy.
177
178.. danger::
179 We've added the master password on the command line.
180 You shouldn't put it in a file for safety reason
181 please don't forget to change the value to something random
182
183 A space is also added in front of the command so "history" doesn't catch it.
184 This masterPassword is very sensitive, please be careful!
185
Brian Freemancce79bd2019-04-17 10:34:32 -0500186
Mike Elliott895ddcb2019-07-09 10:47:08 -0400187To deploy all ONAP applications use this command::
Roger Maitlandd1237f32018-03-26 13:14:04 -0400188
Mike Elliott474c3502019-05-09 10:56:16 -0400189 > cd oom/kubernetes
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200190 > helm deploy dev local/onap --namespace onap --set global.masterPassword=myAwesomePasswordThatINeedToChange -f onap/resources/overrides/onap-all.yaml -f onap/resources/overrides/environment.yaml -f onap/resources/overrides/openstack.yaml --timeout 900
Roger Maitland953b5f12018-03-22 15:24:04 -0400191
Mike Elliott895ddcb2019-07-09 10:47:08 -0400192All override files may be customized (or replaced by other overrides) as per needs.
Brian Freemancce79bd2019-04-17 10:34:32 -0500193
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100194`onap-all.yaml`
Mike Elliott895ddcb2019-07-09 10:47:08 -0400195 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.
Brian Freemancce79bd2019-04-17 10:34:32 -0500196
Lucjan Bryndza3fdabf42020-05-06 11:03:03 +0000197`onap-all-ingress-nginx-vhost.yaml`
198 Alternative version of the `onap-all.yaml` but with global ingress controller enabled. It requires the cluster configured with the nginx ingress controller and load balancer.
199 Please use this file instad `onap-all.yaml` if you want to use experimental ingress controller feature.
200
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100201`environment.yaml`
Mike Elliott895ddcb2019-07-09 10:47:08 -0400202 Includes configuration values specific to the deployment environment.
203
204 Example: adapt readiness and liveness timers to the level of performance of your infrastructure
205
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100206`openstack.yaml`
Mike Elliott895ddcb2019-07-09 10:47:08 -0400207 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.
208
209**Step 9.** Verify ONAP installation
210
211Use the following to monitor your deployment and determine when ONAP is ready for use::
Roger Maitland953b5f12018-03-22 15:24:04 -0400212
Mike Elliott474c3502019-05-09 10:56:16 -0400213 > kubectl get pods -n onap -o=wide
Mike Elliotted5ff712018-11-07 15:47:19 -0500214
Mike Elliott895ddcb2019-07-09 10:47:08 -0400215.. note::
216 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 +0100217
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100218 Launch the healthcheck tests using Robot to verify that the components are healthy::
Mike Elliotted5ff712018-11-07 15:47:19 -0500219
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100220 > ~/oom/kubernetes/robot/ete-k8s.sh onap health
Mike Elliott895ddcb2019-07-09 10:47:08 -0400221
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100222**Step 10.** Undeploy ONAP::
Mike Elliott895ddcb2019-07-09 10:47:08 -0400223
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100224 > helm undeploy dev --purge
Mike Elliotted5ff712018-11-07 15:47:19 -0500225
Brian Freemancce79bd2019-04-17 10:34:32 -0500226More examples of using the deploy and undeploy plugins can be found here: https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins