Skip to content

Commit

Permalink
Update mastering tutorial following testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ghislainbourgeois committed Jun 27, 2024
1 parent c381afd commit c85e2a1
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions docs/tutorials/mastering.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ This section covers installation of necessary tools on the VMs which are going t
Login to the `control-plane` VM:

```console
lxc exec control-plane --user 1000 -- bash
lxc exec control-plane --user 1000 -- bash -l
```

Install MicroK8s:
Expand Down Expand Up @@ -144,7 +144,7 @@ Log out of the VM.
Log in to the `user-plane` VM:

```console
lxc exec user-plane --user 1000 -- bash
lxc exec user-plane --user 1000 -- bash -l
```

Install MicroK8s, configure MetalLB to expose 1 IP address for the UPF (`10.201.0.200`) and enable the Multus plugin:
Expand Down Expand Up @@ -205,7 +205,7 @@ Log out of the VM.
Log in to the `gnbsim` VM:

```console
lxc exec gnbsim --user 1000 -- bash
lxc exec gnbsim --user 1000 -- bash -l
```

Install MicroK8s and add the Multus plugin:
Expand Down Expand Up @@ -261,7 +261,7 @@ Log out of the VM.
Log in to the `juju-controller` VM:

```console
lxc exec juju-controller --user 1000 -- bash
lxc exec juju-controller --user 1000 -- bash -l
```

Begin by installing MicroK8s to hold the Juju controller.
Expand Down Expand Up @@ -428,6 +428,17 @@ control-plane traefik LoadBalancer 10.152.183.28 10.201.0.53 80:32
Note both IPs - in this case `10.201.0.52` for the AMF and `10.201.0.53` for Traefik.
We will need them shortly.

```{note}
If the IP for the AMF is not `10.201.0.52`, you will need to update the DNS entry. In the host,
edit the `main.tf` file. Find the following line and set it to the right IP address, like so:
`host-record=amf.mgmt,10.201.0.53`
Then, run the following command on the host:
`terraform apply -auto-approve`
```

Log out of the `control-plane` VM.

Configure AMF external IP, using the address obtained in the previous step.
Expand Down Expand Up @@ -642,7 +653,7 @@ Update Juju Terraform provider:
terraform init
```

Deploy SD-Core User Plane:
Deploy the gNB simulator:

```console
terraform apply -auto-approve
Expand Down

0 comments on commit c85e2a1

Please sign in to comment.