Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions python/understack-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ docker run --rm --env-file dev.env ghcr.io/rackerlabs/understack/understack-test
- **`floating_ips.yaml`** - build a network, server, router and associate and
dissociate floating IP
- **`create_tenants.yaml`** - creates and deletes 1000 tenants/projects.
- **`bulk_networks_test.yaml`** - creates and deletes 1000 networks.

## Listing available scenario plugins

Expand Down
10 changes: 10 additions & 0 deletions python/understack-tests/bulk_networks_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
NeutronNetworks.create_and_delete_networks:
- runner:
type: constant # run N iterations
times: 1000 # <-- create 1000 networks
concurrency: 50 # number of parallel workers
context:
users:
tenants: 1
users_per_tenant: 1
2 changes: 1 addition & 1 deletion python/understack-tests/create_tenants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ KeystoneBasic.create_tenant:
- runner:
type: constant # run N iterations
times: 1000 # <-- create 1000 tenants
concurrency: 10 # number of parallel workers
concurrency: 50 # number of parallel workers
context:
users:
tenants: 1
Expand Down
Loading