Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions onramp/blueprints.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The Multi-UPF blueprint includes the following:

* New make targets, ``5gc-upf-install`` and ``5gc-upf-uninstall``, to
be executed after the standard SD-Core installation. The blueprint
also reuses the ``roc-load`` target to activate new slices in ROC.
also reuses the ``amp-roc-load`` target to activate new slices in ROC.

* New Ansible role (``upf``) added to ``deps/5gc``, including a new
UPF-specific template (``upf-5g-values.yaml``).
Expand Down Expand Up @@ -103,8 +103,8 @@ You can also optionally install the monitoring subsystem.
.. code-block::

$ make k8s-install
$ make roc-install
$ make roc-load
$ make amp-roc-install
$ make amp-roc-load
$ make 5gc-install
$ make gnbsim-install

Expand All @@ -122,19 +122,19 @@ of ``vars/main.yml``:
access_subnet: "192.168.252.1/24" # access subnet & gateway
core_subnet: "192.168.250.1/24" # core subnet & gateway
helm:
chart_ref: aether/bess-upf
values_file: "deps/5gc/roles/upf/templates/upf-5g-values.yaml"
default_upf:
chart_ref: aether/bess-upf
values_file: "deps/5gc/roles/upf/templates/upf-5g-values.yaml"
default_upf:
ip:
access: "192.168.252.3"
core: "192.168.250.3"
ue_ip_pool: "192.168.100.0/24"
additional_upfs:
additional_upfs:
"1":
ip:
access: "192.168.252.6"
core: "192.168.250.6"
ue_ip_pool: "172.248.0.0/16"
ip:
access: "192.168.252.6"
core: "192.168.250.6"
ue_ip_pool: "172.248.0.0/16"
# "2":
# ip:
# access: "192.168.252.7"
Expand Down Expand Up @@ -171,7 +171,7 @@ Then run the following to load the patch:

.. code-block::

$ make roc-load
$ make amp-roc-load

At this point you can bring up the Aether GUI and see that a second
slice and a second device group have been mapped onto the second UPF.
Expand Down
12 changes: 6 additions & 6 deletions onramp/inspect.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,19 +104,19 @@ ROC:

.. code-block::

$ make roc-install
$ make roc-load
$ make amp-roc-install
$ make amp-roc-load
$ ...
$ make roc-uninstall
$ make amp-roc-uninstall

and for Monitoring:

.. code-block::

$ make monitor-install
$ make monitor-load
$ make amp-monitor-install
$ make amp-monitor-load
$ ...
$ make monitor-uninstall
$ make amp-monitor-uninstall

In both cases, installing the component is a two-step process: first
the microservices that implement the component are instantiated on
Expand Down
12 changes: 6 additions & 6 deletions onramp/ref.rst
Original file line number Diff line number Diff line change
Expand Up @@ -262,17 +262,17 @@ other blueprints.)
.. list-table::
:widths: 25 50

* - `roc-install`
* - `amp-roc-install`
- Install ROC workload.
* - `roc-load`
* - `amp-roc-load`
- Load model values into ROC; assumes ROC already deployed.
* - `roc-uninstall`
* - `amp-roc-uninstall`
- Uninstall ROC workload.
* - `monitor-install`
* - `amp-monitor-install`
- Install Monitor workload.
* - `monitor-load`
* - `amp-monitor-load`
- Load dashboard panels into Monitor; assumes Monitor already deployed.
* - `monitor-uninstall`
* - `amp-monitor-uninstall`
- Uninstall Monitor workload.

**SD-RAN Blueprint**
Expand Down
4 changes: 2 additions & 2 deletions onramp/roc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ define the Models into that service.

.. code-block::

$ make roc-install
$ make roc-load
$ make amp-roc-install
$ make amp-roc-load

To see these initial configuration values using the GUI, open the
dashboard available at ``http://<server-ip>:31194``. If you select
Expand Down