Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 1 | .. vim: syntax=rst |
| 2 | |
| 3 | Setting Up Aether-in-a-Box |
| 4 | ========================== |
| 5 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 6 | Aether-in-a-Box (AiaB) provides an easy way to deploy Aether's SD-CORE and ROC |
| 7 | components, and then run basic tests to validate the installation. |
| 8 | This guide describes the steps to set up AiaB. |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 9 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 10 | AiaB can be set up with a 4G or 5G SD-CORE. In either case, SD-CORE configuration |
| 11 | can be done with or without the ROC. The ROC |
| 12 | provides an interactive GUI for examining and changing the configuration, and is used to |
| 13 | manage the production Aether; it can be deployed to test the integration between |
| 14 | ROC and SD-CORE. If the ROC is not deployed, a simple tool called SimApp |
| 15 | is used to configure the required state in SD-CORE for testing core functionality. |
| 16 | |
| 17 | Helm charts are the primary method of installing the SD-CORE and ROC resources. |
| 18 | AiaB offers a great deal of flexibility regarding which Helm chart versions to install: |
| 19 | |
| 20 | * Local definitions of charts (for testing Helm chart changes) |
| 21 | * Latest published charts (for deploying a development version of Aether) |
| 22 | * Specified versions of charts (for deploying a specific Aether release) |
| 23 | |
| 24 | AiaB can be run on a bare metal machine or VM. System prerequisites: |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 25 | |
| 26 | * Ubuntu 18.04 |
| 27 | * Kernel 4.15 or later |
| 28 | * Haswell CPU or newer |
| 29 | |
| 30 | Clone Repositories |
| 31 | ------------------ |
| 32 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 33 | To initialize the AiaB environment, first clone the following repository |
| 34 | using your Gerrit ID:: |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 35 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 36 | cd ~ |
| 37 | git clone "ssh://<username>@gerrit.opencord.org:29418/aether-in-a-box" |
| 38 | |
| 39 | If you are going to install AiaB using published Helm charts, you can proceed to the |
| 40 | next section. |
| 41 | |
| 42 | If you wish to install SD-CORE from local Helm charts, clone these additional repositories:: |
| 43 | |
| 44 | mkdir -p ~/cord |
| 45 | cd ~/cord |
Andy Bavier | 7ff674f | 2021-11-05 12:47:17 -0700 | [diff] [blame] | 46 | git clone "ssh://<username>@gerrit.opencord.org:29418/sdcore-helm-charts" |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 47 | git clone "ssh://<username>@gerrit.opencord.org:29418/aether-helm-charts" |
| 48 | |
Andy Bavier | 112a33c | 2021-11-11 11:13:49 -0700 | [diff] [blame] | 49 | If you wish to install the ROC from local Helm charts, clone this:: |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 50 | |
| 51 | mkdir -p ~/cord |
| 52 | cd ~/cord |
Andy Bavier | e86261e | 2021-09-21 11:05:18 -0700 | [diff] [blame] | 53 | git clone "ssh://<username>@gerrit.opencord.org:29418/roc-helm-charts" |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 54 | |
| 55 | Now change to *~/aether-in-a-box* directory. |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 56 | |
| 57 | Set up Authentication Tokens |
| 58 | ---------------------------- |
| 59 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 60 | Edit the file *configs/authentication*. |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 61 | |
| 62 | Fill out REGISTRY_USERNAME and REGISTRY_CLI_SECRET as follows: |
| 63 | |
| 64 | * Log into the `Aether Harbor Registry <https://registry.aetherproject.org>`_ using your Crowd credentials |
| 65 | * Select *User Profile* from the drop-down menu in the upper right corner |
| 66 | * For REGISTRY_USERNAME, use the *Username* in your profile |
| 67 | * Copy the *CLI secret* to the clipboard and paste to REGISTRY_CLI_SECRET |
| 68 | |
Andy Bavier | 7ff674f | 2021-11-05 12:47:17 -0700 | [diff] [blame] | 69 | Also fill out REPO_USERNAME and REPO_PASSWORD with the information needed to authenticate |
| 70 | with Aether's Helm chart repositories. |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 71 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 72 | If you have already set up AiaB but you used incorrect credentials, first clean up AiaB as described |
| 73 | in the `Cleanup`_ section, then edit *configs/authentication* and re-build AiaB. |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 74 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 75 | Installing the ROC |
| 76 | ------------------ |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 77 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 78 | Note that you must install the ROC *before* installing SD-CORE. |
| 79 | If you are not using the ROC to configure SD-CORE, you can skip this step. |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 80 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 81 | First choose whether you will install the 4G or 5G SD-CORE. To install the ROC to |
| 82 | configure the 4G SD-CORE:: |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 83 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 84 | make roc-4g-models |
| 85 | |
| 86 | To install the ROC to configure the 5G SD-CORE:: |
| 87 | |
| 88 | make roc-5g-models |
| 89 | |
| 90 | By default the above commands install the ROC from the local charts in the Git repos cloned |
| 91 | earlier. In order to install the ROC using the latest published charts, add *CHARTS=latest* |
| 92 | to the command, e.g.,:: |
| 93 | |
| 94 | CHARTS=latest make roc-4g-models |
| 95 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 96 | To install the Aether 1.6 release, add *CHARTS=release-1.6*:: |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 97 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 98 | CHARTS=release-1.6 make roc-4g-models |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 99 | |
| 100 | Start the 4G SD-CORE |
| 101 | -------------------- |
| 102 | |
| 103 | If you are installing the 5G SD-CORE, you can skip this step. |
| 104 | |
| 105 | To deploy the 4G SD-CORE and run a simple ping test:: |
| 106 | |
| 107 | make test |
| 108 | |
| 109 | By default the above commands install the 4G SD-CORE from the local charts in the Git repos cloned |
| 110 | earlier. In order to install the SD-CORE using the latest published charts, add *CHARTS=latest* |
| 111 | to the command, e.g.,:: |
| 112 | |
| 113 | CHARTS=latest make test |
| 114 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 115 | To install the Aether 1.6 release, add *CHARTS=release-1.6*:: |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 116 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 117 | CHARTS=release-1.6 make test |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 118 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 119 | Start the 5G SD-CORE |
| 120 | -------------------- |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 121 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 122 | If you have already installed the 4G SD-CORE, you must skip this step. Only one version of |
| 123 | the SD-CORE can be installed at a time. |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 124 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 125 | To deploy the 5G SD-CORE and run a test with gNBSim that performs Registration + UE-initiated |
| 126 | PDU Session Establishment + sends User Data packets:: |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 127 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 128 | make 5g-test |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 129 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 130 | By default the above commands install the 5G SD-CORE from the local charts in the Git repos cloned |
| 131 | earlier. In order to install the SD-CORE using the latest published charts, add *CHARTS=latest* |
| 132 | to the command, e.g.,:: |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 133 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 134 | CHARTS=latest make 5g-test |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 135 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 136 | To install the Aether 1.6 release, add *CHARTS=release-1.6*:: |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 137 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 138 | CHARTS=release-1.6 make 5g-test |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 139 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 140 | To change the behavior of the test run by gNBSim, change the contents of *gnb.conf* |
| 141 | in *ransim-values.yaml*. Consult the |
| 142 | `gNBSim documentation <https://docs.sd-core.opennetworking.org/master/developer/gnbsim.html>`_ for more information. |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 143 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 144 | Cleanup |
| 145 | ------- |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 146 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 147 | The first time you build AiaB, it takes a while because it sets up the Kubernetes cluster. |
| 148 | Subsequent builds will be much faster if you follow these steps to clean up the Helm charts without |
| 149 | destroying the Kubernetes cluster. |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 150 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 151 | * Clean up the 4G SD-CORE: *make reset-test* |
| 152 | * Clean up the 5G SD-CORE: *make reset-5g-test* |
| 153 | * Clean up the ROC: *make roc-clean* |
| 154 | |
| 155 | It's normal for the above commands to take a minute or two to complete. |
| 156 | |
| 157 | As an example, suppose that you want to test the 4G SD-CORE with the ROC, and then the 5G SD-CORE |
| 158 | with the ROC. You could run these commands:: |
| 159 | |
| 160 | CHARTS=latest make roc-4g-models # Install ROC with 4G configuration |
| 161 | CHARTS=latest make test # Install 4G SD-CORE and run ping test |
| 162 | make reset-test |
| 163 | make roc-clean |
| 164 | CHARTS=latest make roc-5g-models # Install ROC with 5G configuration |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 165 | CHARTS=latest make 5g-test # Install 5G SD-CORE and run gNB Sim test |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 166 | make reset-5g-test |
| 167 | make roc-clean |
| 168 | |
| 169 | Developer Loop |
| 170 | -------------- |
| 171 | |
| 172 | Suppose you wish to test a new build of a 5G SD-CORE services. You can deploy custom images |
| 173 | by editing `~/aether-in-a-box/5g-core-values.yaml`, for example:: |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 174 | |
| 175 | images: |
| 176 | tags: |
| 177 | webui: registry.aetherproject.org/omecproject/5gc-webui:onf-release3.0.5-roc-935305f |
| 178 | pullPolicy: IfNotPresent |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 179 | |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 180 | To upgrade a running 5G SD-CORE with the new image, or to deploy the 5G SD-CORE with the image:: |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 181 | |
Andy Bavier | 1d63176 | 2022-01-10 15:47:51 -0800 | [diff] [blame] | 182 | make 5g-test |
Andy Bavier | 840e0b4 | 2021-09-16 17:10:23 -0700 | [diff] [blame] | 183 | |
| 184 | Troubleshooting / Known Issues |
| 185 | ------------------------------ |
| 186 | |
| 187 | If you suspect a problem, first verify that all pods are in Running state:: |
| 188 | |
| 189 | kubectl -n omec get pods |
| 190 | kubectl -n aether-roc get pods |
| 191 | |
| 192 | If the pods are stuck in ImagePullBackOff state, then it's likely an issue with credentials. See the |
| 193 | `Set up Authentication Tokens`_ section. |
| 194 | |
| 195 | 4G Test Fails |
| 196 | ^^^^^^^^^^^^^ |
| 197 | Occasionally *make test* (for 4G) fails for unknown reasons; this is true regardless of which Helm charts are used. |
| 198 | If this happens, first try cleaning up AiaB and re-running the test. If *make test* fails consistently, check |
| 199 | whether the configuration has been pushed to the SD-CORE:: |
| 200 | |
| 201 | kubectl -n omec logs config4g-0 | grep "Successfully" |
| 202 | |
| 203 | You should see that a device group and slice has been pushed:: |
| 204 | |
| 205 | [INFO][WebUI][CONFIG] Successfully posted message for device group 4g-oaisim-user to main config thread |
| 206 | [INFO][WebUI][CONFIG] Successfully posted message for slice default to main config thread |
| 207 | |
| 208 | Then tail the *config4g-0* log and make sure that the configuration has been successfully pushed to all |
| 209 | SD-CORE components. |