Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 1.63 KB

File metadata and controls

78 lines (57 loc) · 1.63 KB

Analysis: Network Configuration

Introduction

Template Changes Comments Results

Fedora-90

Initial template. Same as Fedora VM 02.

PodNet(default) + Multus(nic-1)

Results

Fedora-91

Results

Fedora-92

Results

Fedora-93

Results

Fedora-94

Results

Fedora-95

Results

Fedora-96

Results

Create the VMs

---
oc process -f analysis-network-config/90-vm-fedora.yaml | oc apply -f -
---

Get the Network configuration

---
virtctl ssh --local-ssh-opts "-o StrictHostKeyChecking=accept-new" -c 'echo -e "########\n# IP A #\n########\n"; ip a; echo -e "\n############\n# IP ROUTE #\n############\n"; ip route' fedora@fedora-93 > analysis-network-config/results-93.txt
---

Automated process

---
# Create the VMs
for i in {0..6}; do oc process -f docs/analysis-network-config/9${i}-vm-fedora.yaml | oc apply -f -; done
# Get the results
for i in {0..6}; do virtctl ssh --local-ssh-opts "-o StrictHostKeyChecking=accept-new" -c 'echo -e "########\n# IP A #\n########\n"; ip a; echo -e "\n############\n# IP ROUTE #\n############\n"; ip route' fedora@fedora-9${i} > docs/analysis-network-config/results-9${i}.txt; done
---