blob: 2399dc3c7e2dbaca213df8c233b3e41511a88d52 [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 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
Mike Elliotta6243a92019-10-01 13:19:31 -0400244.0.0-ONAP for Dublin
Mike Elliott1f34c062019-10-03 15:28:45 -0400255.0.1-ONAP for El Alto
Mike Elliotta6243a92019-10-01 13:19:31 -040026
Mike Elliottf137b2c2019-04-30 16:28:07 -040027**Step 2.** Install Helm Plugins required to deploy ONAP::
Pawel Wieczorekaa859cd2019-01-23 17:32:18 +010028
29 > sudo cp -R ~/oom/kubernetes/helm/plugins/ ~/.helm
Roger Maitland953b5f12018-03-22 15:24:04 -040030
Brian Freemancce79bd2019-04-17 10:34:32 -050031
Mike Elliott474c3502019-05-09 10:56:16 -040032**Step 3.** Customize the helm charts like oom/kubernetes/onap/values.yaml or an override
33file 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 -050034OpenStack tenant information.
35
Mike Elliott474c3502019-05-09 10:56:16 -040036.. note::
Brian Freemanacf8cd82019-07-11 21:52:46 -050037 Standard and example override files (e.g. onap-all.yaml, openstack.yaml) can be found in
Mike Elliott474c3502019-05-09 10:56:16 -040038 the oom/kubernetes/onap/resources/overrides/ directory.
39
Brian Freemancce79bd2019-04-17 10:34:32 -050040
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
Mike Elliott474c3502019-05-09 10:56:16 -040046 the robot helm charts or robot section of openstack.yaml
Brian Freemancce79bd2019-04-17 10:34:32 -050047
48
49 c. Encrypt the OpenStack password using the java based script for SO helm charts
Mike Elliott474c3502019-05-09 10:56:16 -040050 or SO section of openstack.yaml.
Brian Freemancce79bd2019-04-17 10:34:32 -050051
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
59a. Enabling/Disabling Components:
Mike Elliottf137b2c2019-04-30 16:28:07 -040060Here is an example of the nominal entries that need to be provided.
61We have different values file available for different contexts.
Roger Maitland953b5f12018-03-22 15:24:04 -040062
Mike Elliotted5ff712018-11-07 15:47:19 -050063.. literalinclude:: onap-values.yaml
64 :language: yaml
Roger Maitland953b5f12018-03-22 15:24:04 -040065
Brian Freemancce79bd2019-04-17 10:34:32 -050066
67b. Generating ROBOT Encrypted Password:
68The ROBOT encrypted Password uses the same encryption.key as SO but an
69openssl algorithm that works with the python based Robot Framework.
70
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000071.. note::
Brian Freemancce79bd2019-04-17 10:34:32 -050072 To generate ROBOT openStackEncryptedPasswordHere :
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000073
Mike Elliott474c3502019-05-09 10:56:16 -040074 ``cd so/resources/config/mso/``
Abdelmuhaimen Seaudid7133a12018-07-18 10:59:20 +000075
Mike Elliott474c3502019-05-09 10:56:16 -040076 ``/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 +000077
Brian Freemancce79bd2019-04-17 10:34:32 -050078c. Generating SO Encrypted Password:
79The SO Encrypted Password uses a java based encryption utility since the
80Java encryption library is not easy to integrate with openssl/python that
81ROBOT uses in Dublin.
82
83.. note::
Brian Freemanacf8cd82019-07-11 21:52:46 -050084 To generate SO openStackEncryptedPasswordHere and openStackSoEncryptedPassword:
Brian Freemancce79bd2019-04-17 10:34:32 -050085
Brian Freemanacf8cd82019-07-11 21:52:46 -050086 SO_ENCRYPTION_KEY=`cat ~/oom/kubernetes/so/resources/config/mso/encryption.key`
87
Brian Freemancce79bd2019-04-17 10:34:32 -050088 OS_PASSWORD=XXXX_OS_CLEARTESTPASSWORD_XXXX
89
90 git clone http://gerrit.onap.org/r/integration
Mike Elliottdb271822019-06-06 08:06:19 -040091
92 cd integration/deployment/heat/onap-rke/scripts
Brian Freemanacf8cd82019-07-11 21:52:46 -050093
94
Brian Freemancce79bd2019-04-17 10:34:32 -050095 javac Crypto.java
Brian Freemanacf8cd82019-07-11 21:52:46 -050096
97 [ if javac is not installed 'apt-get update ; apt-get install default-jdk' ]
98
Brian Freemancce79bd2019-04-17 10:34:32 -050099 java Crypto "$OS_PASSWORD" "$SO_ENCRYPTION_KEY"
100
101
102d. Update the OpenStack parameters:
103
Brian Freemanacf8cd82019-07-11 21:52:46 -0500104There 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
107constraints.
108
109openStackPublicNetId:
110
111This network should allow heat templates to add interfaces.
112This need not be an external network, floating IPs can be assigned to the ports on
113the VMs that are created by the heat template but its important that neutron allow
114ports to be created on them.
115
116openStackPrivateNetCidr: "10.0.0.0/16"
117
118This ip address block is used to assign OA&M addresses on VNFs to allow ONAP connectivity.
119The demonstration heat templates assume that 10.0 prefix can be used by the VNFs and the
120demonstration ip addressing plan embodied in the preload template prevent conflicts when
121instantiating the various VNFs. If you need to change this, you will need to modify the preload
122data in the robot helm chart like integration_preload_parametes.py and the demo/heat/preload_data
123in the robot container. The size of the CIDR should be sufficient for ONAP and the VMs you expect
124to create.
125
126openStackOamNetworkCidrPrefix: "10.0"
127
128This ip prefix mush match the openStackPrivateNetCidr and is a helper variable to some of the
129robot scripts for demonstration. A production deployment need not worry about this
130setting but for the demonstration VNFs the ip asssignment strategy assumes 10.0 ip prefix.
131
132
133Example Keystone v2.0
Brian Freemancce79bd2019-04-17 10:34:32 -0500134.. literalinclude:: example-integration-override.yaml
135 :language: yaml
136
Brian Freemanacf8cd82019-07-11 21:52:46 -0500137Example Keystone v3 (required for Rocky and later releases)
138.. literalinclude:: example-integration-override-v3.yaml
139 :language: yaml
140
141
142
Brian Freemancce79bd2019-04-17 10:34:32 -0500143**Step 4.** To setup a local Helm server to server up the ONAP charts::
Roger Maitland953b5f12018-03-22 15:24:04 -0400144
145 > helm serve &
146
147Note the port number that is listed and use it in the Helm repo add as
148follows::
149
150 > helm repo add local http://127.0.0.1:8879
151
Brian Freemancce79bd2019-04-17 10:34:32 -0500152**Step 5.** Verify your Helm repository setup with::
Roger Maitland953b5f12018-03-22 15:24:04 -0400153
154 > helm repo list
155 NAME URL
156 local http://127.0.0.1:8879
157
Brian Freemancce79bd2019-04-17 10:34:32 -0500158**Step 6.** Build a local Helm repository (from the kubernetes directory)::
Roger Maitland9e5067c2018-03-27 10:57:08 -0400159
Mike Elliotted5ff712018-11-07 15:47:19 -0500160 > make all; make onap
Roger Maitland9e5067c2018-03-27 10:57:08 -0400161
Brian Freemancce79bd2019-04-17 10:34:32 -0500162**Step 7.** Display the onap charts that available to be deployed::
Roger Maitland953b5f12018-03-22 15:24:04 -0400163
Brian Freemancce79bd2019-04-17 10:34:32 -0500164 > helm search onap -l
165
Mike Elliotted5ff712018-11-07 15:47:19 -0500166.. literalinclude:: helm-search.txt
Roger Maitland953b5f12018-03-22 15:24:04 -0400167
168.. note::
Roger Maitlandd1237f32018-03-26 13:14:04 -0400169 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 -0400170
Brian Freemancce79bd2019-04-17 10:34:32 -0500171**Step 8.** Once the repo is setup, installation of ONAP can be done with a
172single command
Roger Maitland953b5f12018-03-22 15:24:04 -0400173
Mike Elliott474c3502019-05-09 10:56:16 -0400174.. note::
175 The --timeout 900 is currently required in Dublin to address long running initialization tasks
176 for DMaaP and SO. Without this timeout value both applications may fail to deploy.
Brian Freemancce79bd2019-04-17 10:34:32 -0500177
Mike Elliott895ddcb2019-07-09 10:47:08 -0400178To deploy all ONAP applications use this command::
Roger Maitlandd1237f32018-03-26 13:14:04 -0400179
Mike Elliott474c3502019-05-09 10:56:16 -0400180 > cd oom/kubernetes
Mike Elliott7cad1c62019-07-02 13:48:51 -0400181 > 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
Roger Maitland953b5f12018-03-22 15:24:04 -0400182
Mike Elliott895ddcb2019-07-09 10:47:08 -0400183All override files may be customized (or replaced by other overrides) as per needs.
Brian Freemancce79bd2019-04-17 10:34:32 -0500184
Mike Elliott895ddcb2019-07-09 10:47:08 -0400185onap-all.yaml
Brian Freemancce79bd2019-04-17 10:34:32 -0500186
Mike Elliott895ddcb2019-07-09 10:47:08 -0400187 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 -0500188
Mike Elliott895ddcb2019-07-09 10:47:08 -0400189environment.yaml
190
191 Includes configuration values specific to the deployment environment.
192
193 Example: adapt readiness and liveness timers to the level of performance of your infrastructure
194
195openstack.yaml
196
197 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.
198
199**Step 9.** Verify ONAP installation
200
201Use the following to monitor your deployment and determine when ONAP is ready for use::
Roger Maitland953b5f12018-03-22 15:24:04 -0400202
Mike Elliott474c3502019-05-09 10:56:16 -0400203 > kubectl get pods -n onap -o=wide
Mike Elliotted5ff712018-11-07 15:47:19 -0500204
Mike Elliott895ddcb2019-07-09 10:47:08 -0400205.. note::
206 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 +0100207
Mike Elliott895ddcb2019-07-09 10:47:08 -0400208 Launch the healthcheck tests using Robot to verify that the components are healthy.
Mike Elliotted5ff712018-11-07 15:47:19 -0500209
Mike Elliott895ddcb2019-07-09 10:47:08 -0400210 > ~/oom/kubernetes/robot/ete-k8s.sh onap health
211
212**Step 10.** Undeploy ONAP
213
214> helm undeploy dev --purge
Mike Elliotted5ff712018-11-07 15:47:19 -0500215
Brian Freemancce79bd2019-04-17 10:34:32 -0500216More examples of using the deploy and undeploy plugins can be found here: https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins