Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test/suites: Don't use FAN network in test suite #388

Merged
merged 1 commit into from
Sep 1, 2024
Merged
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
7 changes: 5 additions & 2 deletions test/suites/basic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -318,16 +318,19 @@ lookup_subnet: ${addr}/24
lookup_interface: enp5s0
systems:
- name: micro01
ovn_uplink_interface: enp6s0
storage:
local:
path: /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_lxd_disk1
wipe: true
- name: micro02
ovn_uplink_interface: enp6s0
storage:
local:
path: /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_lxd_disk1
wipe: true
- name: micro03
ovn_uplink_interface: enp6s0
storage:
local:
path: /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_lxd_disk1
Expand Down Expand Up @@ -358,9 +361,9 @@ EOF
if [ "${SKIP_VM_LAUNCH}" = "1" ]; then
echo "::warning::SKIPPING VM LAUNCH TEST"
else
lxc exec micro01 -- lxc launch ubuntu-minimal:22.04 v1 -c limits.memory=512MiB -d root,size=3GiB --vm -s local -n lxdfan0
lxc exec micro01 -- lxc launch ubuntu-minimal:22.04 v1 -c limits.memory=512MiB -d root,size=3GiB --vm -s local -n default
fi
lxc exec micro01 -- lxc launch ubuntu-minimal:22.04 c1 -c limits.memory=512MiB -d root,size=1GiB -s local -n lxdfan0
lxc exec micro01 -- lxc launch ubuntu-minimal:22.04 c1 -c limits.memory=512MiB -d root,size=1GiB -s local -n default

# Ensure we can reach the launched instances.
for m in c1 v1 ; do
Expand Down
Loading