Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 1 | .. |
| 2 | SPDX-FileCopyrightText: © 2021 Open Networking Foundation <support@opennetworking.org> |
| 3 | SPDX-License-Identifier: Apache-2.0 |
| 4 | |
| 5 | BESS UPF Deployment |
| 6 | =================== |
| 7 | |
Hyunsun Moon | b9c7dde | 2021-08-01 06:11:08 -0700 | [diff] [blame] | 8 | This section describes how to configure and deploy BESS UPF. |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 9 | |
| 10 | |
Hyunsun Moon | b9c7dde | 2021-08-01 06:11:08 -0700 | [diff] [blame] | 11 | Network Settings |
| 12 | ---------------- |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 13 | |
| 14 | BESS UPF requires three networks, **enb**, **access**, and **core**, and all |
| 15 | three networks must use different subnets. To help your understanding, |
| 16 | the following example ACE environment will be used in the rest of the guide. |
| 17 | |
| 18 | .. image:: images/bess-upf-example-network.png |
| 19 | |
Hyunsun Moon | 279a948 | 2021-08-01 06:48:54 -0700 | [diff] [blame] | 20 | +-----------+-----------+------------------------------------+-------------------+---------------+ |
| 21 | | Network | VLAN | Subnet | Interface | IP address | |
| 22 | +-----------+-----------+------------------------------------+-------------------+---------------+ |
| 23 | | enb | 2 | 192.168.2.0/24 (gw: 192.168.2.254) | mgmt server vlan2 | 192.168.2.254 | |
| 24 | | | | +-------------------+---------------+ |
| 25 | | | | | enb | 192.168.2.10 | |
| 26 | +-----------+-----------+------------------------------------+-------------------+---------------+ |
| 27 | | access | 3 | 192.168.3.0/24 (gw: 192.168.3.254) | mgmt server vlan3 | 192.168.3.254 | |
| 28 | | | | +-------------------+---------------+ |
| 29 | | | | | upf access | 192.168.3.1 | |
| 30 | +-----------+-----------+------------------------------------+-------------------+---------------+ |
| 31 | | core | 4 | 192.168.4.0/24 (gw: 192.168.4.254) | mgmt server vlan4 | 192.168.4.254 | |
| 32 | | | | +-------------------+---------------+ |
| 33 | | | | | upf core | 192.168.4.1 | |
| 34 | +-----------+-----------+------------------------------------+-------------------+---------------+ |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 35 | |
| 36 | .. note:: |
| 37 | |
| 38 | Management plane and out-of-band network are not depicted in the diagram. |
| 39 | |
| 40 | |
| 41 | Note that the management server has the only external routable address and acts as a router for |
| 42 | all networks in the Aether pod. |
| 43 | So in order for UE to access the Internet, two things need to be done in the managmenet server. |
| 44 | |
Hyunsun Moon | b9c7dde | 2021-08-01 06:11:08 -0700 | [diff] [blame] | 45 | * For outgoing traffic, masquerade the internal adddress with the external address of the management server. |
| 46 | * For response traffic to UE, forward them to UPF's **core** interface. |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 47 | |
| 48 | |
| 49 | Check Cluster Resources |
| 50 | ----------------------- |
| 51 | |
| 52 | Before proceeding with the deployment, make sure the cluster has enough resources to run BESS UPF. |
| 53 | |
| 54 | * 2 dedicated cores (``"cpu"``) |
| 55 | * 2 1Gi HugePages (``"hugepages-1Gi"``) |
| 56 | * 2 SRIOV Virtual Functions bound to **vfio-pci** driver (``"intel.com/intel_sriov_vfio"``) |
| 57 | |
| 58 | In fact, these requirements are not mandatory to run BESS UPF, but are recommended for best performance. |
| 59 | You can use the following command to check allocatable resources in the cluster nodes. |
| 60 | |
| 61 | .. code-block:: shell |
| 62 | |
| 63 | $ kubectl get nodes -o json | jq '.items[].status.available' |
| 64 | { |
| 65 | "cpu": "95", |
| 66 | "ephemeral-storage": "1770223432846", |
| 67 | "hugepages-1Gi": "32Gi", |
| 68 | "intel.com/intel_sriov_netdevice": "32", |
| 69 | "intel.com/intel_sriov_vfio": "32", |
| 70 | "memory": "360749956Ki", |
| 71 | "pods": "110" |
| 72 | } |
| 73 | |
| 74 | |
Hyunsun Moon | b9c7dde | 2021-08-01 06:11:08 -0700 | [diff] [blame] | 75 | Configure and Deploy |
| 76 | -------------------- |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 77 | |
| 78 | Download ``aether-app-configs`` if you don't have it already in your development machine. |
| 79 | |
| 80 | .. code-block:: shell |
| 81 | |
| 82 | $ cd $WORKDIR |
| 83 | $ git clone "ssh://[username]@gerrit.opencord.org:29418/aether-app-configs" |
| 84 | |
Hyunsun Moon | b9c7dde | 2021-08-01 06:11:08 -0700 | [diff] [blame] | 85 | Move the directory to ``apps/bess-upf/upf1`` and create a Helm values file for the new cluster as shown below. |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 86 | Don't forget to replace the IP addresses in the example configuration with the addresses of the actual cluster. |
| 87 | |
Hyunsun Moon | 2b2bf9a | 2021-08-01 05:29:48 -0700 | [diff] [blame] | 88 | .. code-block:: yaml |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 89 | |
| 90 | $ cd $WORKDIR/aether-app-configs/apps/bess-upf/upf1 |
| 91 | $ mkdir overlays/prd-ace-test |
| 92 | $ vi overlays/prd-ace-test/values.yaml |
| 93 | # SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org> |
| 94 | |
| 95 | config: |
| 96 | upf: |
| 97 | enb: |
| 98 | subnet: "192.168.2.0/24" |
| 99 | access: |
| 100 | ip: "192.168.3.1/24" |
| 101 | gateway: "192.168.3.254" |
Hyunsun Moon | 6001f94 | 2021-08-01 10:35:04 -0700 | [diff] [blame] | 102 | vlan: 3 |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 103 | core: |
| 104 | ip: "192.168.4.1/24" |
| 105 | gateway: "192.168.4.254" |
Hyunsun Moon | 6001f94 | 2021-08-01 10:35:04 -0700 | [diff] [blame] | 106 | vlan: 4 |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 107 | # Below is required only when connecting to 5G core |
| 108 | cfgFiles: |
| 109 | upf.json: |
| 110 | cpiface: |
| 111 | dnn: "8internet" |
| 112 | hostname: "upf" |
| 113 | |
| 114 | |
Hyunsun Moon | b9c7dde | 2021-08-01 06:11:08 -0700 | [diff] [blame] | 115 | Update ``fleet.yaml`` in the same directory to let Fleet use the custom configuration when deploying |
| 116 | BESS UPF to the new cluster. |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 117 | |
Hyunsun Moon | 2b2bf9a | 2021-08-01 05:29:48 -0700 | [diff] [blame] | 118 | .. code-block:: yaml |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 119 | |
| 120 | $ vi fleet.yaml |
| 121 | # add following block at the end |
| 122 | - name: prd-ace-test |
| 123 | clusterSelector: |
| 124 | matchLabels: |
| 125 | management.cattle.io/cluster-display-name: ace-test |
| 126 | helm: |
| 127 | valuesFiles: |
| 128 | - overlays/prd-ace-test/values.yaml |
| 129 | |
| 130 | |
Hyunsun Moon | 2b2bf9a | 2021-08-01 05:29:48 -0700 | [diff] [blame] | 131 | Submit your changes. |
Hyunsun Moon | d12f32b | 2021-07-30 12:55:00 -0700 | [diff] [blame] | 132 | |
| 133 | .. code-block:: shell |
| 134 | |
| 135 | $ cd $WORKDIR/aether-app-configs |
| 136 | $ git status |
| 137 | $ git add . |
| 138 | $ git commit -m "Add BESS UPF configs for test ACE" |
| 139 | $ git review |
| 140 | |
| 141 | |
| 142 | Go to Fleet dashboard and wait until the cluster status becomes **Active**. |
Hyunsun Moon | b9c7dde | 2021-08-01 06:11:08 -0700 | [diff] [blame] | 143 | It can take up to 1 min for Fleet to fetch the configuration updates. |