Skip to content

Commit 99596c3

Browse files
authored
Merge pull request #37 from opennetworkinglab/maintenance
scrub omec
2 parents 0359617 + 5378587 commit 99596c3

File tree

5 files changed

+18
-17
lines changed

5 files changed

+18
-17
lines changed

onramp/devel.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ as an example. Consider the following two blocks from the playbook
153153
kubernetes.core.helm:
154154
update_repo_cache: true
155155
name: sd-core
156-
release_namespace: omec
156+
release_namespace: aether-5gc
157157
create_namespace: true
158158
chart_ref: "{{ core.helm.chart_ref }}"
159159
chart_version: "{{ core.helm.chart_version }}"
@@ -174,7 +174,7 @@ These two tasks correspond to the following three ``helm`` commands:
174174
--install \
175175
--version $CHART_VERSION \
176176
--wait \
177-
--namespace omec \
177+
--namespace aether-5gc \
178178
--values $VALUES_FILE \
179179
sd-core
180180

onramp/directory.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,21 @@ Source Repos
2424
Source code for Aether and all of its subsystems can be found in
2525
the following repositories:
2626

27-
* GitHub repository for the OMEC Project
27+
* GitHub repository for the Aether Core
2828
(https://github.com/omec-project): Microservices for SD-Core, plus
2929
the emulator (gNBsim) that subjects SD-Core to RAN workloads.
3030

3131
* GitHub repository for the ONOS Project
3232
(https://github.com/onosproject): Microservices for SD-RAN and ROC,
3333
plus the YANG models used to generate the Aether API.
3434

35-
* GitHub repository for the ONF
35+
* GitHub repository for the Aether Project
3636
(https://github.com/opennetworkinglab): OnRamp documentation and
3737
playbooks for deploying Aether.
3838

39-
Anyone wanting to participate in Aether's ongoing development will
40-
want to learn how to contribute new features to these source repos.
39+
Note that ``omec-project`` and ``opennetworkinglab`` are historical
40+
artifacts related to Aether's origin at the Open Networking Foundation
41+
(ONF).
4142

4243
Artifact Repos
4344
~~~~~~~~~~~~~~~~
@@ -57,6 +58,7 @@ Helm Charts
5758
Docker Images
5859

5960
| https://registry.aetherproject.org
61+
| https://hub.docker.com
6062
6163
Note that as of version 1.20.8, Kubernetes uses the `Containerd
6264
<https://containerd.io/>`__ runtime system instead of Docker. This is

onramp/inspect.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,17 +139,17 @@ containers running as part of the ``upf-0`` pod:
139139

140140
.. code-block::
141141
142-
$ kubectl logs -n omec -p upf-0 bessd
142+
$ kubectl logs -n aether-5gc -p upf-0 bessd
143143
144144
While ``kubectl`` works just fine for tasks like this, you may also
145145
want to install `k9s <https://k9scli.io/>`__\ , a terminal-based UI
146146
that provides a convenient alternative for interacting with Kubernetes.
147-
Once installed, the following command brings up the UI for the OMEC
147+
Once installed, the following command brings up the UI for the
148148
namespace that implements SD-Core.
149149

150150
.. code-block::
151151
152-
$ k9s -n omec
152+
$ k9s -n aether-5gc
153153
154154
:numref:`Figure %s <fig-k9s>` shows an example k9s display, where you
155155
can scroll up and down, and then invoke one of the listed
@@ -161,7 +161,7 @@ the selected pod.
161161
:width: 700px
162162
:align: center
163163

164-
Screenshot of k9s's UI for the OMEC namespace, with the AMF pod
164+
Screenshot of k9s's UI for the ``aether-5gc`` namespace, with the AMF pod
165165
currently selected.
166166

167167

@@ -200,7 +200,7 @@ you learned from ``kubectl`` in place of ``amf-5887bbf6c5-pc9g2``.
200200

201201
.. code-block::
202202
203-
$ kubectl sniff -n omec amf-5887bbf6c5-pc9g2 -o - | tshark -r -
203+
$ kubectl sniff -n aether-5gc amf-5887bbf6c5-pc9g2 -o - | tshark -r -
204204
205205
Of course, you'll also need to restart the RAN emulator to generate
206206
workload for this tool to capture.

onramp/network.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ the container image that implements the UPF, and ``access`` and
7575

7676
.. code-block::
7777
78-
$ kubectl -n omec exec -ti upf-0 bessd -- ip addr
78+
$ kubectl -n aether-5gc exec -ti upf-0 bessd -- ip addr
7979
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
8080
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
8181
inet 127.0.0.1/8 scope host lo
@@ -121,7 +121,7 @@ the UPF's ``bessd`` container will look something like this:
121121

122122
.. code-block::
123123
124-
$ kubectl -n omec exec -ti upf-0 -c bessd -- ip route
124+
$ kubectl -n aether-5gc exec -ti upf-0 -c bessd -- ip route
125125
default via 169.254.1.1 dev eth0
126126
default via 192.168.250.1 dev core metric 110
127127
10.76.28.0/24 via 192.168.252.1 dev access

onramp/start.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -306,12 +306,12 @@ that, type:
306306
307307
$ make aether-5gc-install
308308
309-
``kubectl`` will now show the ``omec`` namespace running (in addition
309+
``kubectl`` will now show the ``aether-5gc`` namespace running (in addition
310310
to ``kube-system``), with output similar to the following:
311311

312312
.. code-block::
313313
314-
$ kubectl get pods -n omec
314+
$ kubectl get pods -n aether-5gc
315315
NAME READY STATUS RESTARTS AGE
316316
amf-5887bbf6c5-pc9g2 1/1 Running 0 6m13s
317317
ausf-6dbb7655c7-42z7m 1/1 Running 0 6m13s
@@ -341,8 +341,7 @@ state, a reset usually corrects the problem. Type:
341341
Once running, you will recognize pods that correspond to many of the
342342
microservices discussed is `Chapter 5
343343
<https://5g.systemsapproach.org/core.html>`__. For example,
344-
``amf-5887bbf6c5-pc9g2`` implements the AMF. Note that for historical
345-
reasons, the Aether Core is called ``omec`` instead of ``sd-core``.
344+
``amf-5887bbf6c5-pc9g2`` implements the AMF.
346345

347346
.. admonition:: Troubleshooting Hint
348347

0 commit comments

Comments
 (0)