Skip to content

Commit

Permalink
Revert "Set size of images to 500"
Browse files Browse the repository at this point in the history
This reverts commit dc6d2bf.
  • Loading branch information
stano45 committed Aug 20, 2024
1 parent 8073eaf commit 6a5eac7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions REPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Next, we want to be able to change the hosts during runtime. We built a Python-b

The controller also keeps track of the match-action table state, by a target IP -> index mapping. The index mapping corresponds to the value in the `ecmp_nhop` table. This makes it more efficient to look up the index of a specific IP in the table, without the need to fetch table state from the switch on each update request.

<img src="assets/controller_light.png" alt="controller" width="500"/>
<img src="assets/controller_light.png" alt="controller" width="600"/>


During this stage, we faced minor issues:
Expand Down Expand Up @@ -119,7 +119,7 @@ Using netns, veth pairs, and the iproute2 suite to set MAC and IP addresses of v

The following diagram shows the created topology, including the virtual interfaces:

<img src="assets/linux_network_light.png" alt="controller" width="500"/>
<img src="assets/linux_network_light.png" alt="controller" width="600"/>

Setting up a complex virtual network topology is not straightforward. We outlined key challenges we faced during implementation:

Expand All @@ -135,7 +135,7 @@ Specifically, Podman uses the netavark backend for virtual networking. Each netw

The following diagram shows the network topology of a single host and the connection of the network to a switch port:

<img src="assets/container_interface_light.png" alt="container_interface" width="500"/>
<img src="assets/container_interface_light.png" alt="container_interface" width="400"/>

We wrote a script to create a network and a pod for each container. A pod is a group of containers with a shared IP address. This is also the case within the Kubernetes network model. We built a container image using the TCP server executable from the previous steps. Analogously, we built a client image.

Expand All @@ -159,7 +159,7 @@ For simplicity, the switch container runs on the host network. The container ima

The following diagram shows the network topology, which consists of 4 Podman networks interfaced by bridges, connected to a single BMv2 switch running in a container, but on the host network:

<img src="assets/container_network_light.png" alt="container_interface" width="500"/>
<img src="assets/container_network_light.png" alt="container_interface" width="400"/>


### Redis container migration
Expand Down

0 comments on commit 6a5eac7

Please sign in to comment.