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

tests: Don't over-provision test volumes #1246

Merged
merged 1 commit into from
Sep 24, 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
4 changes: 2 additions & 2 deletions test/suites/projects.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ test_projects_usage() {
limits.cpu=1 \
limits.memory=512MiB \
limits.processes=20
incus profile device set default root size=3GiB --project test-usage
incus profile device set default root size=300MiB --project test-usage

# Spin up a container
deps/import-busybox --project test-usage --alias testimage
Expand All @@ -1076,7 +1076,7 @@ test_projects_usage() {

incus project info test-usage --format csv | grep -q "CONTAINERS,UNLIMITED,1"
incus project info test-usage --format csv | grep -q "CPU,5,1"
incus project info test-usage --format csv | grep -q "DISK,10.00GiB,3.00GiB"
incus project info test-usage --format csv | grep -q "DISK,10.00GiB,300.00MiB"
incus project info test-usage --format csv | grep -q "INSTANCES,UNLIMITED,1"
incus project info test-usage --format csv | grep -q "MEMORY,1.00GiB,512.00MiB"
incus project info test-usage --format csv | grep -q "NETWORKS,3,0"
Expand Down
Loading