Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 1 | .. This work is licensed under a |
| 2 | .. Creative Commons Attribution 4.0 International License. |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 3 | .. http://creativecommons.org/licenses/by/4.0 |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 4 | .. Copyright 2019-2020 Amdocs, Bell Canada, Orange, Samsung |
Jessica Wagantall | afb1ead | 2020-04-09 12:39:10 -0700 | [diff] [blame] | 5 | .. _oom_quickstart_guide: |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 6 | .. _quick-start-label: |
| 7 | |
| 8 | OOM Quick Start Guide |
| 9 | ##################### |
| 10 | |
efiacor | 1660a8c | 2022-05-03 16:24:13 +0100 | [diff] [blame] | 11 | .. figure:: images/oom_logo/oomLogoV2-medium.png |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 12 | :align: right |
| 13 | |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 14 | Once a Kubernetes environment is available (follow the instructions in |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 15 | :ref:`cloud-setup-guide-label` if you don't have a cloud environment |
| 16 | available), follow the following instructions to deploy ONAP. |
| 17 | |
| 18 | **Step 1.** Clone the OOM repository from ONAP gerrit:: |
| 19 | |
Mike Elliott | a6243a9 | 2019-10-01 13:19:31 -0400 | [diff] [blame] | 20 | > git clone -b <BRANCH> http://gerrit.onap.org/r/oom --recurse-submodules |
Roger Maitland | d1237f3 | 2018-03-26 13:14:04 -0400 | [diff] [blame] | 21 | > cd oom/kubernetes |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 22 | |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 23 | where <BRANCH> can be an official release tag, such as |
Sylvain Desbureaux | 571173b | 2020-06-16 15:13:53 +0200 | [diff] [blame] | 24 | |
| 25 | * 4.0.0-ONAP for Dublin |
| 26 | * 5.0.1-ONAP for El Alto |
| 27 | * 6.0.0 for Frankfurt |
Sylvain Desbureaux | 4f9902b | 2020-11-25 08:34:55 +0100 | [diff] [blame] | 28 | * 7.0.0 for Guilin |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 29 | * 8.0.0 for Honolulu |
Sylvain Desbureaux | c47ce73 | 2021-10-12 15:15:10 +0200 | [diff] [blame] | 30 | * 9.0.0 for Istanbul |
efiacor | 370c6dc | 2021-10-12 14:10:49 +0100 | [diff] [blame] | 31 | * 10.0.0 for Jakarta |
Andreas Geissler | 86791bb | 2022-06-24 10:40:50 +0200 | [diff] [blame] | 32 | * 11.0.0 for Kohn |
Andreas Geissler | eb4598b | 2022-11-10 15:08:21 +0100 | [diff] [blame] | 33 | * 12.0.0 for London |
Mike Elliott | a6243a9 | 2019-10-01 13:19:31 -0400 | [diff] [blame] | 34 | |
Mike Elliott | f137b2c | 2019-04-30 16:28:07 -0400 | [diff] [blame] | 35 | **Step 2.** Install Helm Plugins required to deploy ONAP:: |
Pawel Wieczorek | aa859cd | 2019-01-23 17:32:18 +0100 | [diff] [blame] | 36 | |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 37 | > cp -R ~/oom/kubernetes/helm/plugins/ ~/.local/share/helm/plugins |
Sylvain Desbureaux | c47ce73 | 2021-10-12 15:15:10 +0200 | [diff] [blame] | 38 | > helm plugin install https://github.com/chartmuseum/helm-push.git \ |
| 39 | --version 0.9.0 |
| 40 | |
| 41 | .. note:: |
| 42 | The ``--version 0.9.0`` is required as new version of helm (3.7.0 and up) is |
| 43 | now using ``push`` directly and helm-push is using ``cm-push`` starting |
| 44 | version ``0.10.0`` and up. |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 45 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 46 | **Step 3.** Install Chartmuseum:: |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 47 | |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 48 | > curl -LO https://s3.amazonaws.com/chartmuseum/release/latest/bin/linux/amd64/chartmuseum |
| 49 | > chmod +x ./chartmuseum |
| 50 | > mv ./chartmuseum /usr/local/bin |
| 51 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 52 | **Step 4.** Install Cert-Manager:: |
| 53 | |
| 54 | > kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.2.0/cert-manager.yaml |
| 55 | |
| 56 | More details can be found :doc:`here <oom_setup_paas>`. |
| 57 | |
efiacor | 5c57331 | 2022-01-27 13:46:56 +0000 | [diff] [blame] | 58 | **Step 4.1** Install Strimzi Kafka Operator: |
| 59 | |
| 60 | - Add the helm repo:: |
| 61 | |
| 62 | > helm repo add strimzi https://strimzi.io/charts/ |
| 63 | |
| 64 | - Install the operator:: |
| 65 | |
| 66 | > helm install strimzi-kafka-operator strimzi/strimzi-kafka-operator --namespace strimzi-system --version 0.28.0 --set watchAnyNamespace=true --create-namespace |
| 67 | |
| 68 | More details can be found :doc:`here <oom_setup_paas>`. |
| 69 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 70 | **Step 5.** Customize the Helm charts like `oom/kubernetes/onap/values.yaml` or |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 71 | an override file like `onap-all.yaml`, `onap-vfw.yaml` or `openstack.yaml` file |
| 72 | to suit your deployment with items like the OpenStack tenant information. |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 73 | |
Mike Elliott | 474c350 | 2019-05-09 10:56:16 -0400 | [diff] [blame] | 74 | .. note:: |
guillaume.lambert | f3319a8 | 2021-09-26 21:37:50 +0200 | [diff] [blame] | 75 | Standard and example override files (e.g. `onap-all.yaml`, `openstack.yaml`) |
| 76 | can be found in the `oom/kubernetes/onap/resources/overrides/` directory. |
Mike Elliott | 474c350 | 2019-05-09 10:56:16 -0400 | [diff] [blame] | 77 | |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 78 | |
| 79 | a. You may want to selectively enable or disable ONAP components by changing |
Pawel Wieczorek | 27c390c | 2019-11-15 11:12:02 +0100 | [diff] [blame] | 80 | the ``enabled: true/false`` flags. |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 81 | |
| 82 | |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 83 | b. Encrypt the OpenStack password using the shell tool for Robot and put it in |
| 84 | the Robot Helm charts or Robot section of `openstack.yaml` |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 85 | |
| 86 | |
guillaume.lambert | f3319a8 | 2021-09-26 21:37:50 +0200 | [diff] [blame] | 87 | c. Encrypt the OpenStack password using the java based script for SO Helm |
| 88 | charts or SO section of `openstack.yaml`. |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 89 | |
| 90 | |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 91 | d. Update the OpenStack parameters that will be used by Robot, SO and APPC Helm |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 92 | charts or use an override file to replace them. |
| 93 | |
guillaume.lambert | f3319a8 | 2021-09-26 21:37:50 +0200 | [diff] [blame] | 94 | e. Add in the command line a value for the global master password |
| 95 | (global.masterPassword). |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 96 | |
| 97 | |
| 98 | |
| 99 | a. Enabling/Disabling Components: |
Mike Elliott | f137b2c | 2019-04-30 16:28:07 -0400 | [diff] [blame] | 100 | Here is an example of the nominal entries that need to be provided. |
| 101 | We have different values file available for different contexts. |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 102 | |
Pawel Wieczorek | a1903d6 | 2019-11-14 14:19:59 +0100 | [diff] [blame] | 103 | .. literalinclude:: ../kubernetes/onap/values.yaml |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame] | 104 | :language: yaml |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 105 | |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 106 | |
| 107 | b. Generating ROBOT Encrypted Password: |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 108 | The Robot encrypted Password uses the same encryption.key as SO but an |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 109 | openssl algorithm that works with the python based Robot Framework. |
| 110 | |
Abdelmuhaimen Seaudi | d7133a1 | 2018-07-18 10:59:20 +0000 | [diff] [blame] | 111 | .. note:: |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 112 | To generate Robot ``openStackEncryptedPasswordHere``:: |
Abdelmuhaimen Seaudi | d7133a1 | 2018-07-18 10:59:20 +0000 | [diff] [blame] | 113 | |
Pawel Wieczorek | d7a3035 | 2019-11-14 16:29:59 +0100 | [diff] [blame] | 114 | cd so/resources/config/mso/ |
| 115 | /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] | 116 | |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 117 | c. Generating SO Encrypted Password: |
| 118 | The SO Encrypted Password uses a java based encryption utility since the |
| 119 | Java encryption library is not easy to integrate with openssl/python that |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 120 | Robot uses in Dublin and upper versions. |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 121 | |
| 122 | .. note:: |
Pawel Wieczorek | 27c390c | 2019-11-15 11:12:02 +0100 | [diff] [blame] | 123 | To generate SO ``openStackEncryptedPasswordHere`` and ``openStackSoEncryptedPassword`` |
| 124 | ensure `default-jdk` is installed:: |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 125 | |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 126 | apt-get update; apt-get install default-jdk |
Brian Freeman | acf8cd8 | 2019-07-11 21:52:46 -0500 | [diff] [blame] | 127 | |
Pawel Wieczorek | d7a3035 | 2019-11-14 16:29:59 +0100 | [diff] [blame] | 128 | Then execute:: |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 129 | |
Pawel Wieczorek | d7a3035 | 2019-11-14 16:29:59 +0100 | [diff] [blame] | 130 | SO_ENCRYPTION_KEY=`cat ~/oom/kubernetes/so/resources/config/mso/encryption.key` |
| 131 | OS_PASSWORD=XXXX_OS_CLEARTESTPASSWORD_XXXX |
Mike Elliott | db27182 | 2019-06-06 08:06:19 -0400 | [diff] [blame] | 132 | |
Pawel Wieczorek | d7a3035 | 2019-11-14 16:29:59 +0100 | [diff] [blame] | 133 | git clone http://gerrit.onap.org/r/integration |
| 134 | cd integration/deployment/heat/onap-rke/scripts |
Brian Freeman | acf8cd8 | 2019-07-11 21:52:46 -0500 | [diff] [blame] | 135 | |
Pawel Wieczorek | d7a3035 | 2019-11-14 16:29:59 +0100 | [diff] [blame] | 136 | javac Crypto.java |
| 137 | java Crypto "$OS_PASSWORD" "$SO_ENCRYPTION_KEY" |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 138 | |
| 139 | d. Update the OpenStack parameters: |
| 140 | |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 141 | There are assumptions in the demonstration VNF Heat templates about the |
| 142 | networking available in the environment. To get the most value out of these |
| 143 | templates and the automation that can help confirm the setup is correct, please |
| 144 | observe the following constraints. |
Brian Freeman | acf8cd8 | 2019-07-11 21:52:46 -0500 | [diff] [blame] | 145 | |
Sylvain Desbureaux | 18e8a0b | 2020-04-06 13:39:49 +0200 | [diff] [blame] | 146 | |
Pawel Wieczorek | 27c390c | 2019-11-15 11:12:02 +0100 | [diff] [blame] | 147 | ``openStackPublicNetId:`` |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 148 | This network should allow Heat templates to add interfaces. |
| 149 | This need not be an external network, floating IPs can be assigned to the |
| 150 | ports on the VMs that are created by the heat template but its important that |
| 151 | neutron allow ports to be created on them. |
Brian Freeman | acf8cd8 | 2019-07-11 21:52:46 -0500 | [diff] [blame] | 152 | |
Pawel Wieczorek | 27c390c | 2019-11-15 11:12:02 +0100 | [diff] [blame] | 153 | ``openStackPrivateNetCidr: "10.0.0.0/16"`` |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 154 | This ip address block is used to assign OA&M addresses on VNFs to allow ONAP |
| 155 | connectivity. The demonstration Heat templates assume that 10.0 prefix can be |
| 156 | used by the VNFs and the demonstration ip addressing plan embodied in the |
| 157 | preload template prevent conflicts when instantiating the various VNFs. If |
| 158 | you need to change this, you will need to modify the preload data in the |
| 159 | Robot Helm chart like integration_preload_parameters.py and the |
| 160 | demo/heat/preload_data in the Robot container. The size of the CIDR should |
| 161 | be sufficient for ONAP and the VMs you expect to create. |
Brian Freeman | acf8cd8 | 2019-07-11 21:52:46 -0500 | [diff] [blame] | 162 | |
Pawel Wieczorek | 27c390c | 2019-11-15 11:12:02 +0100 | [diff] [blame] | 163 | ``openStackOamNetworkCidrPrefix: "10.0"`` |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 164 | This ip prefix mush match the openStackPrivateNetCidr and is a helper |
| 165 | variable to some of the Robot scripts for demonstration. A production |
| 166 | deployment need not worry about this setting but for the demonstration VNFs |
| 167 | the ip asssignment strategy assumes 10.0 ip prefix. |
Brian Freeman | acf8cd8 | 2019-07-11 21:52:46 -0500 | [diff] [blame] | 168 | |
Sylvain Desbureaux | 18e8a0b | 2020-04-06 13:39:49 +0200 | [diff] [blame] | 169 | Example Keystone v2.0 |
Pawel Wieczorek | 3c7c6c7 | 2019-11-14 15:53:52 +0100 | [diff] [blame] | 170 | |
efiacor | 1660a8c | 2022-05-03 16:24:13 +0100 | [diff] [blame] | 171 | .. literalinclude:: yaml/example-integration-override.yaml |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 172 | :language: yaml |
| 173 | |
Brian Freeman | acf8cd8 | 2019-07-11 21:52:46 -0500 | [diff] [blame] | 174 | Example Keystone v3 (required for Rocky and later releases) |
Pawel Wieczorek | 3c7c6c7 | 2019-11-14 15:53:52 +0100 | [diff] [blame] | 175 | |
efiacor | 1660a8c | 2022-05-03 16:24:13 +0100 | [diff] [blame] | 176 | .. literalinclude:: yaml/example-integration-override-v3.yaml |
Brian Freeman | acf8cd8 | 2019-07-11 21:52:46 -0500 | [diff] [blame] | 177 | :language: yaml |
| 178 | |
| 179 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 180 | **Step 6.** To setup a local Helm server to server up the ONAP charts:: |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 181 | |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 182 | > chartmuseum --storage local --storage-local-rootdir ~/helm3-storage -port 8879 & |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 183 | |
| 184 | Note the port number that is listed and use it in the Helm repo add as |
| 185 | follows:: |
| 186 | |
| 187 | > helm repo add local http://127.0.0.1:8879 |
| 188 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 189 | **Step 7.** Verify your Helm repository setup with:: |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 190 | |
| 191 | > helm repo list |
| 192 | NAME URL |
| 193 | local http://127.0.0.1:8879 |
| 194 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 195 | **Step 8.** Build a local Helm repository (from the kubernetes directory):: |
Roger Maitland | 9e5067c | 2018-03-27 10:57:08 -0400 | [diff] [blame] | 196 | |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 197 | > make SKIP_LINT=TRUE [HELM_BIN=<HELM_PATH>] all ; make SKIP_LINT=TRUE [HELM_BIN=<HELM_PATH>] onap |
Jakub Latusek | db52a6d | 2020-10-15 15:02:47 +0200 | [diff] [blame] | 198 | |
| 199 | `HELM_BIN` |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 200 | Sets the helm binary to be used. The default value use helm from PATH |
Roger Maitland | 9e5067c | 2018-03-27 10:57:08 -0400 | [diff] [blame] | 201 | |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 202 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 203 | **Step 9.** Display the onap charts that available to be deployed:: |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 204 | |
| 205 | > helm repo update |
| 206 | > helm search repo onap |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 207 | |
efiacor | 1660a8c | 2022-05-03 16:24:13 +0100 | [diff] [blame] | 208 | .. literalinclude:: helm/helm-search.txt |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 209 | |
| 210 | .. note:: |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 211 | The setup of the Helm repository is a one time activity. If you make changes |
| 212 | to your deployment charts or values be sure to use ``make`` to update your |
| 213 | local Helm repository. |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 214 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 215 | **Step 10.** Once the repo is setup, installation of ONAP can be done with a |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 216 | single command |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 217 | |
Mike Elliott | 474c350 | 2019-05-09 10:56:16 -0400 | [diff] [blame] | 218 | .. note:: |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 219 | The ``--timeout 900s`` is currently required in Dublin and later |
| 220 | versions up to address long running initialization tasks for DMaaP |
| 221 | and SO. Without this timeout value both applications may fail to |
| 222 | deploy. |
Sylvain Desbureaux | 18e8a0b | 2020-04-06 13:39:49 +0200 | [diff] [blame] | 223 | |
| 224 | .. danger:: |
| 225 | We've added the master password on the command line. |
| 226 | You shouldn't put it in a file for safety reason |
| 227 | please don't forget to change the value to something random |
| 228 | |
| 229 | A space is also added in front of the command so "history" doesn't catch it. |
| 230 | This masterPassword is very sensitive, please be careful! |
| 231 | |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 232 | |
Mike Elliott | 895ddcb | 2019-07-09 10:47:08 -0400 | [diff] [blame] | 233 | To deploy all ONAP applications use this command:: |
Roger Maitland | d1237f3 | 2018-03-26 13:14:04 -0400 | [diff] [blame] | 234 | |
Mike Elliott | 474c350 | 2019-05-09 10:56:16 -0400 | [diff] [blame] | 235 | > cd oom/kubernetes |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 236 | > 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 Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 237 | |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 238 | All override files may be customized (or replaced by other overrides) as per |
| 239 | needs. |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 240 | |
Pawel Wieczorek | 27c390c | 2019-11-15 11:12:02 +0100 | [diff] [blame] | 241 | `onap-all.yaml` |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 242 | Enables the modules in the ONAP deployment. As ONAP is very modular, it is |
| 243 | possible to customize ONAP and disable some components through this |
| 244 | configuration file. |
Brian Freeman | cce79bd | 2019-04-17 10:34:32 -0500 | [diff] [blame] | 245 | |
Lucjan Bryndza | 3fdabf4 | 2020-05-06 11:03:03 +0000 | [diff] [blame] | 246 | `onap-all-ingress-nginx-vhost.yaml` |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 247 | Alternative version of the `onap-all.yaml` but with global ingress controller |
| 248 | enabled. It requires the cluster configured with the nginx ingress controller |
| 249 | and load balancer. Please use this file instead `onap-all.yaml` if you want |
| 250 | to use experimental ingress controller feature. |
Lucjan Bryndza | 3fdabf4 | 2020-05-06 11:03:03 +0000 | [diff] [blame] | 251 | |
Pawel Wieczorek | 27c390c | 2019-11-15 11:12:02 +0100 | [diff] [blame] | 252 | `environment.yaml` |
Mike Elliott | 895ddcb | 2019-07-09 10:47:08 -0400 | [diff] [blame] | 253 | Includes configuration values specific to the deployment environment. |
| 254 | |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 255 | Example: adapt readiness and liveness timers to the level of performance of |
| 256 | your infrastructure |
Mike Elliott | 895ddcb | 2019-07-09 10:47:08 -0400 | [diff] [blame] | 257 | |
Pawel Wieczorek | 27c390c | 2019-11-15 11:12:02 +0100 | [diff] [blame] | 258 | `openstack.yaml` |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 259 | Includes all the OpenStack related information for the default target tenant |
| 260 | you want to use to deploy VNFs from ONAP and/or additional parameters for the |
| 261 | embedded tests. |
Mike Elliott | 895ddcb | 2019-07-09 10:47:08 -0400 | [diff] [blame] | 262 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 263 | **Step 11.** Verify ONAP installation |
Mike Elliott | 895ddcb | 2019-07-09 10:47:08 -0400 | [diff] [blame] | 264 | |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 265 | Use the following to monitor your deployment and determine when ONAP is ready |
| 266 | for use:: |
Roger Maitland | 953b5f1 | 2018-03-22 15:24:04 -0400 | [diff] [blame] | 267 | |
Mike Elliott | 474c350 | 2019-05-09 10:56:16 -0400 | [diff] [blame] | 268 | > kubectl get pods -n onap -o=wide |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame] | 269 | |
Mike Elliott | 895ddcb | 2019-07-09 10:47:08 -0400 | [diff] [blame] | 270 | .. note:: |
guillaume.lambert | f3319a8 | 2021-09-26 21:37:50 +0200 | [diff] [blame] | 271 | While all pods may be in a Running state, it is not a guarantee that all |
| 272 | components are running fine. |
Pawel Wieczorek | aa859cd | 2019-01-23 17:32:18 +0100 | [diff] [blame] | 273 | |
guillaume.lambert | f3319a8 | 2021-09-26 21:37:50 +0200 | [diff] [blame] | 274 | Launch the healthcheck tests using Robot to verify that the components are |
| 275 | healthy:: |
Mike Elliott | ed5ff71 | 2018-11-07 15:47:19 -0500 | [diff] [blame] | 276 | |
Pawel Wieczorek | d7a3035 | 2019-11-14 16:29:59 +0100 | [diff] [blame] | 277 | > ~/oom/kubernetes/robot/ete-k8s.sh onap health |
Mike Elliott | 895ddcb | 2019-07-09 10:47:08 -0400 | [diff] [blame] | 278 | |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 279 | **Step 12.** Undeploy ONAP |
Eric Debeau | 993b77b | 2020-08-19 15:30:00 +0200 | [diff] [blame] | 280 | :: |
Mike Elliott | 895ddcb | 2019-07-09 10:47:08 -0400 | [diff] [blame] | 281 | |
Sylvain Desbureaux | 557628a | 2021-03-24 14:59:16 +0100 | [diff] [blame] | 282 | > helm undeploy dev |
ramagp | 302ce4f | 2020-08-18 08:09:16 +0000 | [diff] [blame] | 283 | |
guillaume.lambert | f3319a8 | 2021-09-26 21:37:50 +0200 | [diff] [blame] | 284 | More examples of using the deploy and undeploy plugins can be found here: |
| 285 | https://wiki.onap.org/display/DW/OOM+Helm+%28un%29Deploy+plugins |