Skip to content

Commit f65e642

Browse files
authored
Merge pull request #1305 from rackerlabs/PUC-853-20250930
feat(rally): Adds rally test for building bulk networks
2 parents 7e98805 + 4a694f4 commit f65e642

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

python/understack-tests/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ docker run --rm --env-file dev.env ghcr.io/rackerlabs/understack/understack-test
3535
- **`floating_ips.yaml`** - build a network, server, router and associate and
3636
dissociate floating IP
3737
- **`create_tenants.yaml`** - creates and deletes 1000 tenants/projects.
38+
- **`bulk_networks_test.yaml`** - creates and deletes 1000 networks.
3839

3940
## Listing available scenario plugins
4041

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
NeutronNetworks.create_and_delete_networks:
3+
- runner:
4+
type: constant # run N iterations
5+
times: 1000 # <-- create 1000 networks
6+
concurrency: 50 # number of parallel workers
7+
context:
8+
users:
9+
tenants: 1
10+
users_per_tenant: 1

python/understack-tests/create_tenants.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ KeystoneBasic.create_tenant:
33
- runner:
44
type: constant # run N iterations
55
times: 1000 # <-- create 1000 tenants
6-
concurrency: 10 # number of parallel workers
6+
concurrency: 50 # number of parallel workers
77
context:
88
users:
99
tenants: 1

0 commit comments

Comments
 (0)