Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 1 | .. vim: syntax=rst |
| 2 | |
| 3 | Aether ROC Developer Guide |
| 4 | ========================== |
| 5 | |
| 6 | Background / Development Environment |
| 7 | ------------------------------------ |
| 8 | |
| 9 | This document assumes familiarity with Kubernetes and Helm, and that a Kubernetes/Helm development |
| 10 | environment has already been deployed in the developer’s work environment. |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 11 | |
| 12 | This development environment can use any of a number of potential mechanisms -- including KinD, kubeadm, etc. |
| 13 | |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 14 | The Aether-in-a-Box script is one potential way to setup a development environment, but not the only way. |
| 15 | As an alternative to the developer’s local machine, a remote environment can be set up, for example on |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 16 | cloud infrastructure such as Cloudlab. |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 17 | |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 18 | .. note:: When ROC is deployed it is unsecured by default, with no Authentication or Authorization. |
| 19 | To secure ROC so that the Authentication and Authorization can be tested, follow the Securing ROC |
| 20 | guide below :ref:`securing_roc` |
| 21 | |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 22 | Installing Prerequisites |
| 23 | ------------------------ |
| 24 | |
| 25 | Atomix and onos-operator must be installed:: |
| 26 | |
| 27 | # create necessary namespaces |
| 28 | kubectl create namespace micro-onos |
| 29 | |
Andy Bavier | 4c42541 | 2021-08-27 14:39:38 -0700 | [diff] [blame] | 30 | # add repos |
| 31 | helm repo add atomix https://charts.atomix.io |
| 32 | helm repo add onosproject https://charts.onosproject.org |
| 33 | helm repo update |
| 34 | |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 35 | # install atomix |
Sean Condon | 70dcf70 | 2021-08-24 10:57:29 +0100 | [diff] [blame] | 36 | export ATOMIX_CONTROLLER_VERSION=0.6.8 |
Sean Condon | 257687f | 2021-08-23 11:13:20 +0100 | [diff] [blame] | 37 | helm -n kube-system install atomix-controller atomix/atomix-controller --version $ATOMIX_CONTROLLER_VERSION |
Sean Condon | 70dcf70 | 2021-08-24 10:57:29 +0100 | [diff] [blame] | 38 | export ATOMIX_RAFT_VERSION=0.1.9 |
| 39 | helm -n kube-system install atomix-raft-storage atomix/atomix-raft-storage --version $ATOMIX_RAFT_VERSION |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 40 | |
| 41 | # install the onos operator |
Sean Condon | 1df1fcf | 2021-09-20 09:45:39 +0100 | [diff] [blame] | 42 | ONOS_OPERATOR_VERSION=0.4.10 |
Sean Condon | 257687f | 2021-08-23 11:13:20 +0100 | [diff] [blame] | 43 | helm install -n kube-system onos-operator onosproject/onos-operator --version $ONOS_OPERATOR_VERSION |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 44 | |
Sean Condon | 257687f | 2021-08-23 11:13:20 +0100 | [diff] [blame] | 45 | .. note:: The ROC is sensitive to the versions of Atomix and onos-operator installed. The values |
Sean Condon | 1df1fcf | 2021-09-20 09:45:39 +0100 | [diff] [blame] | 46 | shown above are correct for the 1.3.x versions of the *aether-roc-umbrella*. |
Sean Condon | 257687f | 2021-08-23 11:13:20 +0100 | [diff] [blame] | 47 | |
| 48 | .. list-table:: ROC support component version matrix |
Sean Condon | 70dcf70 | 2021-08-24 10:57:29 +0100 | [diff] [blame] | 49 | :widths: 40 20 20 20 |
Sean Condon | 257687f | 2021-08-23 11:13:20 +0100 | [diff] [blame] | 50 | :header-rows: 1 |
| 51 | |
| 52 | * - ROC Version |
| 53 | - Atomix Controller |
| 54 | - Atomix Raft |
| 55 | - Onos Operator |
Sean Condon | 70dcf70 | 2021-08-24 10:57:29 +0100 | [diff] [blame] | 56 | * - 1.2.25-1.2.45 |
Sean Condon | 257687f | 2021-08-23 11:13:20 +0100 | [diff] [blame] | 57 | - 0.6.7 |
| 58 | - 0.1.8 |
| 59 | - 0.4.8 |
Sean Condon | 70dcf70 | 2021-08-24 10:57:29 +0100 | [diff] [blame] | 60 | * - 1.3.0- |
| 61 | - 0.6.8 |
| 62 | - 0.1.9 |
Sean Condon | 1df1fcf | 2021-09-20 09:45:39 +0100 | [diff] [blame] | 63 | - 0.4.10 |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 64 | |
| 65 | Verify that these services were installed properly. |
| 66 | You should see pods for *atomix-controller*, *atomix-raft-storage-controller*, |
| 67 | *onos-operator-config*, and *onos-operator-topo*. |
| 68 | Execute these commands:: |
| 69 | |
Sean Condon | 257687f | 2021-08-23 11:13:20 +0100 | [diff] [blame] | 70 | helm -n kube-system list |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 71 | kubectl -n kube-system get pods | grep -i atomix |
| 72 | kubectl -n kube-system get pods | grep -i onos |
| 73 | |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 74 | Create a values-override.yaml |
| 75 | ----------------------------- |
| 76 | |
| 77 | You’ll want to override several of the defaults in the ROC helm charts:: |
| 78 | |
| 79 | cat > values-override.yaml <<EOF |
| 80 | import: |
Scott Baker | b46a6ed | 2021-08-02 14:03:10 -0700 | [diff] [blame] | 81 | onos-gui: |
| 82 | enabled: true |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 83 | |
| 84 | onos-gui: |
Scott Baker | b46a6ed | 2021-08-02 14:03:10 -0700 | [diff] [blame] | 85 | ingress: |
| 86 | enabled: false |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 87 | |
| 88 | aether-roc-gui-v3: |
Scott Baker | b46a6ed | 2021-08-02 14:03:10 -0700 | [diff] [blame] | 89 | ingress: |
| 90 | enabled: false |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 91 | EOF |
| 92 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 93 | Installing the ``aether-roc-umbrella`` Helm chart |
| 94 | ------------------------------------------------- |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 95 | |
| 96 | Add the necessary helm repositories:: |
| 97 | |
| 98 | # obtain username and password from Michelle and/or ONF infra team |
| 99 | export repo_user=<username> |
| 100 | export repo_password=<password> |
Sean Condon | 1df1fcf | 2021-09-20 09:45:39 +0100 | [diff] [blame] | 101 | helm repo add aether --username "$repo_user" --password "$repo_password" https://charts.aetherproject.org |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 102 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 103 | ``aether-roc-umbrella`` will bring up the ROC and its services:: |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 104 | |
Sean Condon | 1df1fcf | 2021-09-20 09:45:39 +0100 | [diff] [blame] | 105 | helm -n micro-onos install aether-roc-umbrella aether/aether-roc-umbrella -f values-override.yaml |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 106 | |
| 107 | kubectl wait pod -n micro-onos --for=condition=Ready -l type=config --timeout=300s |
| 108 | |
| 109 | |
Sean Condon | f918f64 | 2021-08-04 14:32:53 +0100 | [diff] [blame] | 110 | .. _posting-the-mega-patch: |
| 111 | |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 112 | Posting the mega-patch |
| 113 | ---------------------- |
| 114 | |
| 115 | The ROC usually comes up in a blank state -- there are no Enterprises, UEs, or other artifacts present in it. |
| 116 | The mega-patch is an example patch that populates the ROC with some sample enterprises, UEs, slices, etc. |
| 117 | Execute the following:: |
| 118 | |
| 119 | # launch a port-forward for the API |
| 120 | # this will continue to run in the background |
| 121 | kubectl -n micro-onos port-forward service/aether-roc-api --address 0.0.0.0 8181:8181 & |
| 122 | |
| 123 | git clone https://github.com/onosproject/aether-roc-api.git |
| 124 | |
| 125 | # execute the mega-patch (it will post via CURL to localhost:8181) |
| 126 | bash ~/path/to/aether-roc-api/examples/MEGA_Patch.curl |
| 127 | |
| 128 | |
| 129 | You may wish to customize the mega patch. |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 130 | |
| 131 | For example, by default the patch configures the ``sdcore-adapter`` to push to |
| 132 | ``sdcore-test-dummy``. |
| 133 | |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 134 | You could configure it to push to a live aether-in-a-box core by doing something like this:: |
| 135 | |
| 136 | sed -i 's^http://aether-roc-umbrella-sdcore-test-dummy/v1/config/5g^http://webui.omec.svc.cluster.local:9089/config^g' MEGA_Patch.curl |
| 137 | |
| 138 | #apply the patch |
| 139 | ./MEGA_Patch.curl |
| 140 | |
| 141 | (Note that if your Aether-in-a-Box was installed on a different machine that port-forwarding may be necessary) |
| 142 | |
| 143 | |
| 144 | Expected CURL output from a successful mega-patch post will be a UUID. |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 145 | |
| 146 | You can also verify that the mega-patch was successful by going into the |
| 147 | ``aether-roc-gui`` in a browser (see the section on useful port-forwards |
| 148 | below). The GUI may open to a dashboard that is unpopulated -- you can use the |
| 149 | dropdown menu (upper-right hand corner of the screen) to select an object such |
| 150 | as VCS and you will see a list of VCS. |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 151 | |
| 152 | |ROCGUI| |
| 153 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 154 | Uninstalling the ``aether-roc-umbrella`` Helm chart |
| 155 | --------------------------------------------------- |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 156 | |
| 157 | To tear things back down, usually as part of a developer loop prior to redeploying again, do the following:: |
| 158 | |
| 159 | helm -n micro-onos del aether-roc-umbrella |
| 160 | |
| 161 | If the uninstall hangs or if a subsequent reinstall hangs, it could be an issue with some of the CRDs |
| 162 | not getting cleaned up. The following may be useful:: |
| 163 | |
| 164 | # fix stuck finalizers in operator CRDs |
| 165 | |
| 166 | kubectl -n micro-onos patch entities connectivity-service-v2 --type json --patch='[ { "op": "remove", "path": "/metadata/finalizers" } ]' |
| 167 | |
| 168 | kubectl -n micro-onos patch entities connectivity-service-v3 --type json --patch='[ { "op": "remove", "path": "/metadata/finalizers" } ]' |
| 169 | |
| 170 | kubectl -n micro-onos patch kind aether --type json --patch='[ { "op": "remove", "path": "/metadata/finalizers" } ]' |
| 171 | |
| 172 | Useful port forwards |
| 173 | -------------------- |
| 174 | |
| 175 | Port forwarding is often necessary to allow access to ports inside of Kubernetes pods that use ClusterIP addressing. |
| 176 | Note that you typically need to leave a port-forward running (you can put it in the background). |
| 177 | Also, If you redeploy the ROC and/or if a pod crashes then you might have to restart a port-forward. |
| 178 | The following port-forwards may be useful:: |
| 179 | |
| 180 | # aether-roc-api |
| 181 | |
| 182 | kubectl -n micro-onos port-forward service/aether-roc-api --address 0.0.0.0 8181:8181 |
| 183 | |
| 184 | # aether-roc-gui |
| 185 | |
| 186 | kubectl -n micro-onos port-forward service/aether-roc-gui --address 0.0.0.0 8183:80 |
| 187 | |
| 188 | # grafana |
| 189 | |
| 190 | kubectl -n micro-onos port-forward service/aether-roc-umbrella-grafana --address 0.0.0.0 8187:80 |
| 191 | |
| 192 | # onos gui |
| 193 | |
| 194 | kubectl -n micro-onos port-forward service/onos-gui --address 0.0.0.0 8182:80 |
| 195 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 196 | ``aether-roc-api`` and ``aether-roc-gui`` are in our experience the most useful two port-forwards. |
| 197 | |
| 198 | ``aether-roc-api`` is useful to be able to POST REST API requests. |
| 199 | |
| 200 | ``aether-roc-gui`` is useful to be able to interactively browse the current configuration. |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 201 | |
Sean Condon | 257687f | 2021-08-23 11:13:20 +0100 | [diff] [blame] | 202 | .. note:: Internally the ``aether-roc-gui`` operates a Reverse Proxy on the ``aether-roc-api``. This |
| 203 | means that if you have done a ``port-forward`` to ``aether-roc-gui`` say on port ``8183`` there's no |
| 204 | need to do another on the ``aether-roc-api`` instead you can access the API on |
| 205 | ``http://localhost:8183/aether-roc-api`` |
| 206 | |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 207 | Deploying using custom images |
| 208 | ----------------------------- |
| 209 | |
| 210 | Custom images may be used by editing the values-override.yaml file. |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 211 | For example, to deploy a custom ``sdcore-adapter``:: |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 212 | |
| 213 | sdcore-adapter-v3: |
| 214 | |
| 215 | prometheusEnabled: false |
| 216 | |
| 217 | image: |
| 218 | |
| 219 | repository: my-private-repo/sdcore-adapter |
| 220 | |
| 221 | tag: my-tag |
| 222 | |
| 223 | pullPolicy: Always |
| 224 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 225 | The above example assumes you have published a docker images at ``my-private-repo/sdcore-adapter:my-tag``. |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 226 | My particular workflow is to deploy a local-docker registry and push my images to that. |
| 227 | Please do not publish ONF images to a public repository unless the image is intended to be public. |
| 228 | Several ONF repositories are private, and therefore their docker artifacts should also be private. |
| 229 | |
| 230 | There are alternatives to using a private docker repository. |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 231 | For example, if you are using kubeadm, then you may be able to simply tag the image locally. |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 232 | If you’re using KinD, then you can push a local image to into the kind cluster:: |
| 233 | |
| 234 | kind load docker-image sdcore-adapter:my-tag |
| 235 | |
Scott Baker | abcfc6e | 2021-09-08 22:37:51 -0700 | [diff] [blame] | 236 | Developing using a custom onos-config |
| 237 | ------------------------------------- |
| 238 | |
| 239 | The onos-operator is responsible for building model plugins at runtime. To do this, it needs source code |
| 240 | for onos-config that matches the onos-config image that is deployed. One way to do this is to fork the |
| 241 | onos-config repository and commit your onos-config changes to a personal repository, and then reference |
| 242 | that personal repository in the values.yaml. For example:: |
| 243 | |
| 244 | onos-config: |
| 245 | plugin: |
| 246 | compiler: |
| 247 | target: "github.com/mygithubaccount/onos-config@mytag" |
| 248 | image: |
| 249 | repository: mydockeraccount/onos-config |
| 250 | tag: mytag |
| 251 | pullPolicy: Always |
| 252 | |
| 253 | In the above example, the operator will pull the image from `mydockeraccount`, and it'll pull the |
| 254 | onos-config code from `mygithubaccount`. Using a personal docker account is not strictly necessary; |
| 255 | images can also be built and tagged entirely locally. |
| 256 | |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 257 | Inspecting logs |
| 258 | --------------- |
| 259 | |
| 260 | Most of the relevant Kubernetes pods are in the micro-onos namespace. |
| 261 | The names may change from deployment to deployment, so start by getting a list of pods:: |
| 262 | |
| 263 | kubectl -n micro-onos get pods |
| 264 | |
| 265 | Then you can inspect a specific pod/container:: |
| 266 | |
| 267 | kubectl -n micro-onos logs sdcore-adapter-v3-7468cc58dc-ktctz sdcore-adapter-v3 |
| 268 | |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 269 | .. _securing_roc: |
| 270 | |
| 271 | Securing ROC |
| 272 | ------------ |
| 273 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 274 | When deploying ROC with the ``aether-roc-umbrella`` chart, secure mode can be enabled by |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 275 | specifying an OpenID Connect (OIDC) issuer like:: |
| 276 | |
Andy Bavier | e86261e | 2021-09-21 11:05:18 -0700 | [diff] [blame] | 277 | helm -n micro-onos install aether-roc-umbrella aether/aether-roc-umbrella \ |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 278 | --set onos-config.openidc.issuer=http://k3u-keycloak:80/auth/realms/master \ |
| 279 | --set aether-roc-gui-v3.openidc.issuer=http://k3u-keycloak:5557/auth/realms/master |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 280 | |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 281 | The choice of OIDC issuer in this case is ``keycloak-389-umbrella``, or alternately ``dex-ldap-umbrella`` (deprecated). |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 282 | |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 283 | ``keycloak-389-umbrella`` |
| 284 | """"""""""""""""""""""""" |
| 285 | |
| 286 | Keycloak is an Open Source Identity and Access Management for Modern Applications and |
| 287 | Services. It can be used as an OIDC Issuer than can act as a front end to several authentication systems |
| 288 | e.g. LDAP, Crowd, Google, GitHub |
| 289 | |
| 290 | ``keycloak-389-umbrella`` is a Helm chart that combines a Keycloak server with an LDAP |
| 291 | installation (389 Directory Server), and an LDAP administration tool. It can be deployed in to the |
| 292 | same cluster namespace as ``aether-roc-umbrella``. |
| 293 | |
| 294 | Its LDAP server is populated with 7 different users in the 2 example enterprises - *starbucks* and *acme*. |
| 295 | |
| 296 | When running it should be available at *http://k3u-keycloak:5557/auth/realms/master/.well-known/openid-configuration*. |
| 297 | |
| 298 | See `keycloak-389-umbrella <https://github.com/onosproject/onos-helm-charts/tree/master/keycloak-389-umbrella#readme>`_ |
| 299 | for more details. |
| 300 | |
| 301 | In a production environment, the public Aether Keycloak (with its LDAP server populated with Aether users and groups) should be used. |
| 302 | See `public keycloak <https://keycloak.opennetworking.org/auth/realms/master/.well-known/openid-configuration>`_ for more details. |
| 303 | |
| 304 | .. note:: Your RBAC access to ROC will be limited by the groups you belong to in its LDAP store. |
| 305 | |
| 306 | ``dex-ldap-umbrella`` (Deprecated) |
| 307 | """""""""""""""""""""""""""""""""" |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 308 | |
| 309 | Dex is a cloud native OIDC Issuer than can act as a front end to several authentication systems |
| 310 | e.g. LDAP, Crowd, Google, GitHub |
| 311 | |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 312 | ``dex-ldap-umbrella`` is a Helm chart that combines a Dex server with an OpenLDAP |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 313 | installation, and an LDAP administration tool. It can be deployed in to the |
| 314 | same cluster namespace as ``aether-roc-umbrella``. |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 315 | |
| 316 | Its LDAP server is populated with 7 different users in the 2 example enterprises - *starbucks* and *acme*. |
| 317 | |
| 318 | When running it should be available at *http://dex-ldap-umbrella:5556/.well-known/openid-configuration*. |
| 319 | |
| 320 | See `dex-ldap-umbrella <https://github.com/onosproject/onos-helm-charts/tree/master/dex-ldap-umbrella#readme>`_ |
| 321 | for more details. |
| 322 | |
| 323 | As an alternative there is a public Dex server connected to the ONF Crowd server, that allows |
| 324 | ONF staff to login with their own credentials: |
| 325 | See `public dex <https://dex.aetherproject.org/dex/.well-known/openid-configuration>`_ for more details. |
| 326 | |
| 327 | .. note:: Your RBAC access to ROC will be limited by the groups you belong to in Crowd. |
| 328 | |
| 329 | Role Based Access Control |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 330 | """"""""""""""""""""""""" |
| 331 | |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 332 | When secured, access to the configuration in ROC is limited by the **groups** that a user belongs to. |
| 333 | |
| 334 | * **AetherROCAdmin** - users in this group have full read **and** write access to all configuration. |
| 335 | * *<enterprise>* - users in a group the lowercase name of an enterprise, will have **read** access to that enterprise. |
| 336 | * **EnterpriseAdmin** - users in this group will have read **and** write access the enterprise they belong to. |
| 337 | |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 338 | For example in *keycloak-389-umbrella* the user *Daisy Duke* belongs to *starbucks* **and** |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 339 | *EnterpriseAdmin* and so has read **and** write access to items linked with *starbucks* enterprise. |
| 340 | |
| 341 | By comparison the user *Elmer Fudd* belongs only to *starbucks* group and so has only **read** access to items |
| 342 | linked with the *starbucks* enterprise. |
| 343 | |
| 344 | Requests to a Secure System |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 345 | """"""""""""""""""""""""""" |
| 346 | |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 347 | When configuration is retrieved or updated through *aether-config*, a Bearer Token in the |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 348 | form of a JSON Web Token (JWT) issued by the selected OIDC Issuer server must accompany |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 349 | the request as an Authorization Header. |
| 350 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 351 | This applies to both the REST interface of ``aether-roc-api`` **and** the *gnmi* interface of |
| 352 | ``aether-rconfig``. |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 353 | |
| 354 | In the Aether ROC, a Bearer Token can be generated by logging in and selecting API Key from the |
| 355 | menu. This pops up a window with a copy button, where the key can be copied. |
| 356 | |
| 357 | The key will expire after 24 hours. |
| 358 | |
| 359 | .. image:: images/aether-roc-gui-copy-api-key.png |
| 360 | :width: 580 |
| 361 | :alt: Aether ROC GUI allows copying of API Key to clipboard |
| 362 | |
| 363 | Accessing the REST interface from a tool like Postman, should include this Auth token. |
| 364 | |
| 365 | .. image:: images/postman-auth-token.png |
| 366 | :width: 930 |
| 367 | :alt: Postman showing Authentication Token pasted in |
| 368 | |
| 369 | Logging |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 370 | """"""" |
| 371 | |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 372 | The logs of *aether-config* will contain the **username** and **timestamp** of |
| 373 | any **gnmi** call when security is enabled. |
| 374 | |
| 375 | .. image:: images/aether-config-log.png |
| 376 | :width: 887 |
| 377 | :alt: aether-config log message showing username and timestamp |
| 378 | |
Sean Condon | 435be9a | 2021-08-06 14:28:37 +0100 | [diff] [blame] | 379 | Accessing GUI from an external system |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 380 | """"""""""""""""""""""""""""""""""""" |
| 381 | |
Sean Condon | 435be9a | 2021-08-06 14:28:37 +0100 | [diff] [blame] | 382 | To access the ROC GUI from a computer outside the Cluster machine using *port-forwarding* then |
| 383 | it is necessary to: |
| 384 | |
| 385 | * Ensure that all *port-forward*'s have **--address=0.0.0.0** |
| 386 | * Add to the IP address of the cluster machine to the **/etc/hosts** of the outside computer as:: |
| 387 | |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 388 | <ip address of cluster> k3u-keycloak aether-roc-gui |
| 389 | * Verify that you can access the Keycloak server by its name *http://k3u-keycloak:5557/auth/realms/master/.well-known/openid-configuration* |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 390 | * Access the GUI through the hostname (rather than ip address) ``http://aether-roc-gui:8183`` |
Sean Condon | 435be9a | 2021-08-06 14:28:37 +0100 | [diff] [blame] | 391 | |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 392 | Troubleshooting Secure Access |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 393 | """"""""""""""""""""""""""""" |
| 394 | |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 395 | While every effort has been made to ensure that securing Aether is simple and effective, |
| 396 | some difficulties may arise. |
| 397 | |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 398 | One of the most important steps is to validate that the OIDC Issuer (Keycloak server) can be reached |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 399 | from the browser. The **well_known** URL should be available and show the important endpoints are correct. |
| 400 | |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 401 | .. image:: images/keycloak-389-umbrella-well-known.png |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 402 | :width: 580 |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 403 | :alt: Keycloak Well Known page |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 404 | |
| 405 | If logged out of the Browser when accessing the Aether ROC GUI, accessing any page of the application should |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 406 | redirect to the Keycloak login page. |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 407 | |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 408 | .. image:: images/keycloak-ldap-login-page.png |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 409 | :width: 493 |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 410 | :alt: Keycloak Login page |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 411 | |
| 412 | When logged in the User details can be seen by clicking the User's name in the drop down menu. |
| 413 | This shows the **groups** that the user belongs to, and can be used to debug RBAC issues. |
| 414 | |
| 415 | .. image:: images/aether-roc-gui-user-details.png |
| 416 | :width: 700 |
| 417 | :alt: User Details page |
| 418 | |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 419 | When you sign out of the ROC GUI, if you are not redirected to the Keycloak Login Page, |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 420 | you should check the Developer Console of the browser. The console should show the correct |
Sean Condon | 948aeaa | 2021-09-29 12:08:30 +0100 | [diff] [blame] | 421 | OIDC issuer (Keycloak server), and that Auth is enabled. |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 422 | |
| 423 | .. image:: images/aether-roc-gui-console-loggedin.png |
| 424 | :width: 418 |
| 425 | :alt: Browser Console showing correct configuration |
| 426 | |
Scott Baker | b46a6ed | 2021-08-02 14:03:10 -0700 | [diff] [blame] | 427 | ROC Data Model Conventions and Requirements |
| 428 | ------------------------------------------- |
| 429 | |
| 430 | The MEGA-Patch described above will bring up a fully compliant sample data model. |
| 431 | However, it may be useful to bring up your own data model, customized to a different |
| 432 | site of sites. This subsection documents conventions and requirements for the Aether |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 433 | modeling within the ROC. |
Scott Baker | b46a6ed | 2021-08-02 14:03:10 -0700 | [diff] [blame] | 434 | |
| 435 | The ROC models must be configured with the following: |
| 436 | |
| 437 | * A default enterprise with the id `defaultent`. |
| 438 | * A default ip-domain with the id `defaultent-defaultip`. |
| 439 | * A default site with the id `defaultent-defaultsite`. |
| 440 | This site should be linked to the `defaultent` enterprise. |
| 441 | * A default device group with the id `defaultent-defaultsite-default`. |
| 442 | This device group should be linked to the `defaultent-defaultip` ip-domain |
| 443 | and the `defaultent-defaultsite` site. |
| 444 | |
| 445 | Each Enterprise Site must be configured with a default device group and that default |
| 446 | device group's name must end in the suffix `-default`. For example, `acme-chicago-default`. |
| 447 | |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 448 | Some exercises to get familiar |
| 449 | ------------------------------ |
| 450 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 451 | 1. Deploy the ROC and POST the mega-patch, go into the ``aether-roc-gui`` and click |
| 452 | through the VCS, DeviceGroup, and other objects to see that they were |
| 453 | created as expected. |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 454 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 455 | 2. Examine the log of the ``sdcore-adapter-v3`` container. It should be |
| 456 | attempting to push the mega-patch’s changes. If you don’t have a core |
| 457 | available, it may be failing the push, but you should see the attempts. |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 458 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 459 | 3. Change an object in the GUI. Watch the ``sdcore-adapter-v3`` log file and |
| 460 | see that the adapter attempts to push the change. |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 461 | |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 462 | 4. Try POSTing a change via the API. Observe the ``sdcore-adapter-v3`` log |
| 463 | file and see that the adapter attempts to push the change. |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 464 | |
Andy Bavier | f73c3d2 | 2021-08-30 10:29:06 -0700 | [diff] [blame] | 465 | 5. Deploy a 5G Aether-in-a-Box (See :doc:`Setting Up Aether-in-a-Box |
| 466 | <aiab>`), modify the mega-patch to specify the URL for the Aether-in-a-Box |
Zack Williams | 1ae109e | 2021-07-27 11:17:04 -0700 | [diff] [blame] | 467 | ``webui`` container, POST the mega-patch, and observe that the changes were |
| 468 | correctly pushed via the ``sdcore-adapter-v3`` into the ``sd-core``’s |
| 469 | ``webui`` container (``webui`` container log will show configuration as it |
| 470 | is received) |
Scott Baker | fab7c9e | 2021-07-29 17:12:16 -0700 | [diff] [blame] | 471 | |
| 472 | .. |ROCGUI| image:: images/rocgui.png |
Sean Condon | eb95cd6 | 2021-08-04 19:44:18 +0100 | [diff] [blame] | 473 | :width: 945 |
| 474 | :alt: ROC GUI showing list of VCS |