blob: b7749b105605ef296fa34358e9c0813b219484e8 [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
efiacor1660a8c2022-05-03 16:24:13 +010011.. figure:: images/oom_logo/oomLogoV2-medium.png
Roger Maitland953b5f12018-03-22 15:24:04 -040012 :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
Sylvain Desbureauxc47ce732021-10-12 15:15:10 +020030* 9.0.0 for Istanbul
efiacor370c6dc2021-10-12 14:10:49 +010031* 10.0.0 for Jakarta
Andreas Geissler86791bb2022-06-24 10:40:50 +020032* 11.0.0 for Kohn
Mike Elliotta6243a92019-10-01 13:19:31 -040033
Mike Elliottf137b2c2019-04-30 16:28:07 -040034**Step 2.** Install Helm Plugins required to deploy ONAP::
Pawel Wieczorekaa859cd2019-01-23 17:32:18 +010035
Sylvain Desbureaux557628a2021-03-24 14:59:16 +010036 > cp -R ~/oom/kubernetes/helm/plugins/ ~/.local/share/helm/plugins
Sylvain Desbureauxc47ce732021-10-12 15:15:10 +020037 > helm plugin install https://github.com/chartmuseum/helm-push.git \
38 --version 0.9.0
39
40.. note::
41 The ``--version 0.9.0`` is required as new version of helm (3.7.0 and up) is
42 now using ``push`` directly and helm-push is using ``cm-push`` starting
43 version ``0.10.0`` and up.
Roger Maitland953b5f12018-03-22 15:24:04 -040044
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +020045**Step 3.** Install Chartmuseum::
Brian Freemancce79bd2019-04-17 10:34:32 -050046
Sylvain Desbureaux557628a2021-03-24 14:59:16 +010047 > curl -LO https://s3.amazonaws.com/chartmuseum/release/latest/bin/linux/amd64/chartmuseum
48 > chmod +x ./chartmuseum
49 > mv ./chartmuseum /usr/local/bin
50
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +020051**Step 4.** Install Cert-Manager::
52
53 > kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.2.0/cert-manager.yaml
54
55More details can be found :doc:`here <oom_setup_paas>`.
56
efiacor5c573312022-01-27 13:46:56 +000057**Step 4.1** Install Strimzi Kafka Operator:
58
59- Add the helm repo::
60
61 > helm repo add strimzi https://strimzi.io/charts/
62
63- Install the operator::
64
65 > helm install strimzi-kafka-operator strimzi/strimzi-kafka-operator --namespace strimzi-system --version 0.28.0 --set watchAnyNamespace=true --create-namespace
66
67More details can be found :doc:`here <oom_setup_paas>`.
68
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +020069**Step 5.** Customize the Helm charts like `oom/kubernetes/onap/values.yaml` or
Eric Debeau993b77b2020-08-19 15:30:00 +020070an override file like `onap-all.yaml`, `onap-vfw.yaml` or `openstack.yaml` file
71to suit your deployment with items like the OpenStack tenant information.
Brian Freemancce79bd2019-04-17 10:34:32 -050072
Mike Elliott474c3502019-05-09 10:56:16 -040073.. note::
guillaume.lambertf3319a82021-09-26 21:37:50 +020074 Standard and example override files (e.g. `onap-all.yaml`, `openstack.yaml`)
75 can be found in the `oom/kubernetes/onap/resources/overrides/` directory.
Mike Elliott474c3502019-05-09 10:56:16 -040076
Brian Freemancce79bd2019-04-17 10:34:32 -050077
78 a. You may want to selectively enable or disable ONAP components by changing
Pawel Wieczorek27c390c2019-11-15 11:12:02 +010079 the ``enabled: true/false`` flags.
Brian Freemancce79bd2019-04-17 10:34:32 -050080
81
Eric Debeau993b77b2020-08-19 15:30:00 +020082 b. Encrypt the OpenStack password using the shell tool for Robot and put it in
83 the Robot Helm charts or Robot section of `openstack.yaml`
Brian Freemancce79bd2019-04-17 10:34:32 -050084
85
guillaume.lambertf3319a82021-09-26 21:37:50 +020086 c. Encrypt the OpenStack password using the java based script for SO Helm
87 charts or SO section of `openstack.yaml`.
Brian Freemancce79bd2019-04-17 10:34:32 -050088
89
Eric Debeau993b77b2020-08-19 15:30:00 +020090 d. Update the OpenStack parameters that will be used by Robot, SO and APPC Helm
Brian Freemancce79bd2019-04-17 10:34:32 -050091 charts or use an override file to replace them.
92
guillaume.lambertf3319a82021-09-26 21:37:50 +020093 e. Add in the command line a value for the global master password
94 (global.masterPassword).
Brian Freemancce79bd2019-04-17 10:34:32 -050095
96
97
98a. Enabling/Disabling Components:
Mike Elliottf137b2c2019-04-30 16:28:07 -040099Here is an example of the nominal entries that need to be provided.
100We have different values file available for different contexts.
Roger Maitland953b5f12018-03-22 15:24:04 -0400101
Pawel Wieczoreka1903d62019-11-14 14:19:59 +0100102.. literalinclude:: ../kubernetes/onap/values.yaml
Mike Elliotted5ff712018-11-07 15:47:19 -0500103 :language: yaml
Roger Maitland953b5f12018-03-22 15:24:04 -0400104
Brian Freemancce79bd2019-04-17 10:34:32 -0500105
106b. Generating ROBOT Encrypted Password:
Eric Debeau993b77b2020-08-19 15:30:00 +0200107The Robot encrypted Password uses the same encryption.key as SO but an
Brian Freemancce79bd2019-04-17 10:34:32 -0500108openssl algorithm that works with the python based Robot Framework.
109
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +0000110.. note::
Eric Debeau993b77b2020-08-19 15:30:00 +0200111 To generate Robot ``openStackEncryptedPasswordHere``::
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +0000112
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100113 cd so/resources/config/mso/
114 /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 +0000115
Brian Freemancce79bd2019-04-17 10:34:32 -0500116c. Generating SO Encrypted Password:
117The SO Encrypted Password uses a java based encryption utility since the
118Java encryption library is not easy to integrate with openssl/python that
Eric Debeau993b77b2020-08-19 15:30:00 +0200119Robot uses in Dublin and upper versions.
Brian Freemancce79bd2019-04-17 10:34:32 -0500120
121.. note::
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100122 To generate SO ``openStackEncryptedPasswordHere`` and ``openStackSoEncryptedPassword``
123 ensure `default-jdk` is installed::
Brian Freemancce79bd2019-04-17 10:34:32 -0500124
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100125 apt-get update; apt-get install default-jdk
Brian Freemanacf8cd82019-07-11 21:52:46 -0500126
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100127 Then execute::
Brian Freemancce79bd2019-04-17 10:34:32 -0500128
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100129 SO_ENCRYPTION_KEY=`cat ~/oom/kubernetes/so/resources/config/mso/encryption.key`
130 OS_PASSWORD=XXXX_OS_CLEARTESTPASSWORD_XXXX
Mike Elliottdb271822019-06-06 08:06:19 -0400131
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100132 git clone http://gerrit.onap.org/r/integration
133 cd integration/deployment/heat/onap-rke/scripts
Brian Freemanacf8cd82019-07-11 21:52:46 -0500134
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100135 javac Crypto.java
136 java Crypto "$OS_PASSWORD" "$SO_ENCRYPTION_KEY"
Brian Freemancce79bd2019-04-17 10:34:32 -0500137
138d. Update the OpenStack parameters:
139
Eric Debeau993b77b2020-08-19 15:30:00 +0200140There are assumptions in the demonstration VNF Heat templates about the
141networking available in the environment. To get the most value out of these
142templates and the automation that can help confirm the setup is correct, please
143observe the following constraints.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500144
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200145
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100146``openStackPublicNetId:``
Eric Debeau993b77b2020-08-19 15:30:00 +0200147 This network should allow Heat templates to add interfaces.
148 This need not be an external network, floating IPs can be assigned to the
149 ports on the VMs that are created by the heat template but its important that
150 neutron allow ports to be created on them.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500151
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100152``openStackPrivateNetCidr: "10.0.0.0/16"``
Eric Debeau993b77b2020-08-19 15:30:00 +0200153 This ip address block is used to assign OA&M addresses on VNFs to allow ONAP
154 connectivity. The demonstration Heat templates assume that 10.0 prefix can be
155 used by the VNFs and the demonstration ip addressing plan embodied in the
156 preload template prevent conflicts when instantiating the various VNFs. If
157 you need to change this, you will need to modify the preload data in the
158 Robot Helm chart like integration_preload_parameters.py and the
159 demo/heat/preload_data in the Robot container. The size of the CIDR should
160 be sufficient for ONAP and the VMs you expect to create.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500161
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100162``openStackOamNetworkCidrPrefix: "10.0"``
Eric Debeau993b77b2020-08-19 15:30:00 +0200163 This ip prefix mush match the openStackPrivateNetCidr and is a helper
164 variable to some of the Robot scripts for demonstration. A production
165 deployment need not worry about this setting but for the demonstration VNFs
166 the ip asssignment strategy assumes 10.0 ip prefix.
Brian Freemanacf8cd82019-07-11 21:52:46 -0500167
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200168Example Keystone v2.0
Pawel Wieczorek3c7c6c72019-11-14 15:53:52 +0100169
efiacor1660a8c2022-05-03 16:24:13 +0100170.. literalinclude:: yaml/example-integration-override.yaml
Brian Freemancce79bd2019-04-17 10:34:32 -0500171 :language: yaml
172
Brian Freemanacf8cd82019-07-11 21:52:46 -0500173Example Keystone v3 (required for Rocky and later releases)
Pawel Wieczorek3c7c6c72019-11-14 15:53:52 +0100174
efiacor1660a8c2022-05-03 16:24:13 +0100175.. literalinclude:: yaml/example-integration-override-v3.yaml
Brian Freemanacf8cd82019-07-11 21:52:46 -0500176 :language: yaml
177
178
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +0200179**Step 6.** To setup a local Helm server to server up the ONAP charts::
Roger Maitland953b5f12018-03-22 15:24:04 -0400180
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100181 > chartmuseum --storage local --storage-local-rootdir ~/helm3-storage -port 8879 &
Roger Maitland953b5f12018-03-22 15:24:04 -0400182
183Note the port number that is listed and use it in the Helm repo add as
184follows::
185
186 > helm repo add local http://127.0.0.1:8879
187
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +0200188**Step 7.** Verify your Helm repository setup with::
Roger Maitland953b5f12018-03-22 15:24:04 -0400189
190 > helm repo list
191 NAME URL
192 local http://127.0.0.1:8879
193
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +0200194**Step 8.** Build a local Helm repository (from the kubernetes directory)::
Roger Maitland9e5067c2018-03-27 10:57:08 -0400195
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100196 > 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 +0200197
198`HELM_BIN`
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100199 Sets the helm binary to be used. The default value use helm from PATH
Roger Maitland9e5067c2018-03-27 10:57:08 -0400200
Roger Maitland953b5f12018-03-22 15:24:04 -0400201
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +0200202**Step 9.** Display the onap charts that available to be deployed::
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100203
204 > helm repo update
205 > helm search repo onap
Brian Freemancce79bd2019-04-17 10:34:32 -0500206
efiacor1660a8c2022-05-03 16:24:13 +0100207.. literalinclude:: helm/helm-search.txt
Roger Maitland953b5f12018-03-22 15:24:04 -0400208
209.. note::
Eric Debeau993b77b2020-08-19 15:30:00 +0200210 The setup of the Helm repository is a one time activity. If you make changes
211 to your deployment charts or values be sure to use ``make`` to update your
212 local Helm repository.
Roger Maitland953b5f12018-03-22 15:24:04 -0400213
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +0200214**Step 10.** Once the repo is setup, installation of ONAP can be done with a
Brian Freemancce79bd2019-04-17 10:34:32 -0500215single command
Roger Maitland953b5f12018-03-22 15:24:04 -0400216
Mike Elliott474c3502019-05-09 10:56:16 -0400217.. note::
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100218 The ``--timeout 900s`` is currently required in Dublin and later
219 versions up to address long running initialization tasks for DMaaP
220 and SO. Without this timeout value both applications may fail to
221 deploy.
Sylvain Desbureaux18e8a0b2020-04-06 13:39:49 +0200222
223.. danger::
224 We've added the master password on the command line.
225 You shouldn't put it in a file for safety reason
226 please don't forget to change the value to something random
227
228 A space is also added in front of the command so "history" doesn't catch it.
229 This masterPassword is very sensitive, please be careful!
230
Brian Freemancce79bd2019-04-17 10:34:32 -0500231
Mike Elliott895ddcb2019-07-09 10:47:08 -0400232To deploy all ONAP applications use this command::
Roger Maitlandd1237f32018-03-26 13:14:04 -0400233
Mike Elliott474c3502019-05-09 10:56:16 -0400234 > cd oom/kubernetes
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100235 > 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 -0400236
Eric Debeau993b77b2020-08-19 15:30:00 +0200237All override files may be customized (or replaced by other overrides) as per
238needs.
Brian Freemancce79bd2019-04-17 10:34:32 -0500239
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100240`onap-all.yaml`
Eric Debeau993b77b2020-08-19 15:30:00 +0200241 Enables the modules in the ONAP deployment. As ONAP is very modular, it is
242 possible to customize ONAP and disable some components through this
243 configuration file.
Brian Freemancce79bd2019-04-17 10:34:32 -0500244
Lucjan Bryndza3fdabf42020-05-06 11:03:03 +0000245`onap-all-ingress-nginx-vhost.yaml`
Eric Debeau993b77b2020-08-19 15:30:00 +0200246 Alternative version of the `onap-all.yaml` but with global ingress controller
247 enabled. It requires the cluster configured with the nginx ingress controller
248 and load balancer. Please use this file instead `onap-all.yaml` if you want
249 to use experimental ingress controller feature.
Lucjan Bryndza3fdabf42020-05-06 11:03:03 +0000250
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100251`environment.yaml`
Mike Elliott895ddcb2019-07-09 10:47:08 -0400252 Includes configuration values specific to the deployment environment.
253
Eric Debeau993b77b2020-08-19 15:30:00 +0200254 Example: adapt readiness and liveness timers to the level of performance of
255 your infrastructure
Mike Elliott895ddcb2019-07-09 10:47:08 -0400256
Pawel Wieczorek27c390c2019-11-15 11:12:02 +0100257`openstack.yaml`
Eric Debeau993b77b2020-08-19 15:30:00 +0200258 Includes all the OpenStack related information for the default target tenant
259 you want to use to deploy VNFs from ONAP and/or additional parameters for the
260 embedded tests.
Mike Elliott895ddcb2019-07-09 10:47:08 -0400261
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +0200262**Step 11.** Verify ONAP installation
Mike Elliott895ddcb2019-07-09 10:47:08 -0400263
Eric Debeau993b77b2020-08-19 15:30:00 +0200264Use the following to monitor your deployment and determine when ONAP is ready
265for use::
Roger Maitland953b5f12018-03-22 15:24:04 -0400266
Mike Elliott474c3502019-05-09 10:56:16 -0400267 > kubectl get pods -n onap -o=wide
Mike Elliotted5ff712018-11-07 15:47:19 -0500268
Mike Elliott895ddcb2019-07-09 10:47:08 -0400269.. note::
guillaume.lambertf3319a82021-09-26 21:37:50 +0200270 While all pods may be in a Running state, it is not a guarantee that all
271 components are running fine.
Pawel Wieczorekaa859cd2019-01-23 17:32:18 +0100272
guillaume.lambertf3319a82021-09-26 21:37:50 +0200273 Launch the healthcheck tests using Robot to verify that the components are
274 healthy::
Mike Elliotted5ff712018-11-07 15:47:19 -0500275
Pawel Wieczorekd7a30352019-11-14 16:29:59 +0100276 > ~/oom/kubernetes/robot/ete-k8s.sh onap health
Mike Elliott895ddcb2019-07-09 10:47:08 -0400277
Piotr Marcinkiewicz2ca8a472021-04-29 13:29:02 +0200278**Step 12.** Undeploy ONAP
Eric Debeau993b77b2020-08-19 15:30:00 +0200279::
Mike Elliott895ddcb2019-07-09 10:47:08 -0400280
Sylvain Desbureaux557628a2021-03-24 14:59:16 +0100281 > helm undeploy dev
ramagp302ce4f2020-08-18 08:09:16 +0000282
guillaume.lambertf3319a82021-09-26 21:37:50 +0200283More examples of using the deploy and undeploy plugins can be found here:
284https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins