Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 1 | .. This work is licensed under a Creative Commons Attribution 4.0 International License. |
| 2 | .. http://creativecommons.org/licenses/by/4.0 |
| 3 | .. Copyright 2018 Amdocs, Bell Canada |
| 4 | |
| 5 | .. _quick-start-label: |
| 6 | |
| 7 | OOM Quick Start Guide |
| 8 | ##################### |
| 9 | |
| 10 | .. figure:: oomLogoV2-medium.png |
| 11 | :align: right |
| 12 | |
| 13 | Once a kubernetes environment is available (follow the instructions in |
| 14 | :ref:`cloud-setup-guide-label` if you don't have a cloud environment |
| 15 | available), follow the following instructions to deploy ONAP. |
| 16 | |
| 17 | **Step 1.** Clone the OOM repository from ONAP gerrit:: |
| 18 | |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame^] | 19 | > git clone -b casablanca http://gerrit.onap.org/r/oom |
Roger Maitland | d1237f3 | 2018-03-26 13:14:04 -0400 | [diff] [blame] | 20 | > cd oom/kubernetes |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 21 | |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame^] | 22 | **Step 2.** Install Helm Plugins required to deploy the ONAP Casablanca release:: |
| 23 | sudo cp -R ~/oom/kubernetes/helm/plugins/ ~/.helm |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 24 | |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame^] | 25 | **Step 3.** Customize the onap/values.yaml file to suit your deployment. You |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 26 | may want to selectively enable or disable ONAP components by changing the |
| 27 | `enabled: true/false` flags as shown below: |
| 28 | |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame^] | 29 | .. literalinclude:: onap-values.yaml |
| 30 | :language: yaml |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 31 | |
Abdelmuhaimen Seaudi | d7133a1 | 2018-07-18 10:59:20 +0000 | [diff] [blame] | 32 | .. note:: |
| 33 | To generate openStackEncryptedPasswordHere : |
| 34 | |
Abdelmuhaimen Seaudi | 5bf6678 | 2018-07-26 13:38:17 +0000 | [diff] [blame] | 35 | ``root@olc-rancher:~# cd so/resources/config/mso/`` |
Abdelmuhaimen Seaudi | d7133a1 | 2018-07-18 10:59:20 +0000 | [diff] [blame] | 36 | |
Abdelmuhaimen Seaudi | 5bf6678 | 2018-07-26 13:38:17 +0000 | [diff] [blame] | 37 | ``root@olc-rancher:~/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 Seaudi | d7133a1 | 2018-07-18 10:59:20 +0000 | [diff] [blame] | 38 | |
Roger Maitland | 9e5067c | 2018-03-27 10:57:08 -0400 | [diff] [blame] | 39 | **Step 3.** To setup a local Helm server to server up the ONAP charts:: |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 40 | |
| 41 | > helm serve & |
| 42 | |
| 43 | Note the port number that is listed and use it in the Helm repo add as |
| 44 | follows:: |
| 45 | |
| 46 | > helm repo add local http://127.0.0.1:8879 |
| 47 | |
Roger Maitland | 9e5067c | 2018-03-27 10:57:08 -0400 | [diff] [blame] | 48 | **Step 4.** Verify your Helm repository setup with:: |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 49 | |
| 50 | > helm repo list |
| 51 | NAME URL |
| 52 | local http://127.0.0.1:8879 |
| 53 | |
Roger Maitland | 9e5067c | 2018-03-27 10:57:08 -0400 | [diff] [blame] | 54 | **Step 5.** Build a local Helm repository (from the kubernetes directory):: |
| 55 | |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame^] | 56 | > make all; make onap |
Roger Maitland | 9e5067c | 2018-03-27 10:57:08 -0400 | [diff] [blame] | 57 | |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 58 | **Step 6.** Display the charts that available to be deployed:: |
| 59 | |
| 60 | > helm search -l |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame^] | 61 | .. literalinclude:: helm-search.txt |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 62 | |
| 63 | .. note:: |
Roger Maitland | d1237f3 | 2018-03-26 13:14:04 -0400 | [diff] [blame] | 64 | 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 Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 65 | |
| 66 | **Step 7.** Once the repo is setup, installation of ONAP can be done with a |
| 67 | single command:: |
| 68 | |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame^] | 69 | > helm deploy dev local/onap --namespace onap |
Roger Maitland | d1237f3 | 2018-03-26 13:14:04 -0400 | [diff] [blame] | 70 | |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 71 | |
| 72 | Use the following to monitor your deployment and determine when ONAP is ready for use:: |
| 73 | |
| 74 | > kubectl get pods --all-namespaces -o=wide |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame^] | 75 | |
| 76 | Undeploying onap can be done using the following command:: |
| 77 | > helm undeploy dev --purge |
| 78 | |
| 79 | |
| 80 | More examples of using the deploy and undeploy plugins can be found here: https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins |