forked from Deuxfleurs/mknet
Add flavors
This commit is contained in:
parent
9652978433
commit
6588e878b2
3 changed files with 25 additions and 6 deletions
|
@ -54,9 +54,12 @@ Feel free to write new topologies!
|
||||||
|
|
||||||
## Scenarios
|
## Scenarios
|
||||||
|
|
||||||
All scenarions:
|
All scenarios:
|
||||||
- `./scenarios/garage-s3lat` - Run s3lat on Garage
|
- `./scenarios/garage-s3lat [garage-v0.7|garage-v0.8]` - Run s3lat on Garage
|
||||||
- `./scenarios/garage-warp [default|fast]` - Run warp on Garage. 2 flavors are available: fast and default.
|
- `./scenarios/garage-warp [garage-v0.7|garage-v0.8] [default|fast]` - Run warp on Garage. 2 flavors are available: fast and default.
|
||||||
|
|
||||||
|
*Scenarios take optional flavors as input that modulate their behavioir. Passing them is not mandatory,
|
||||||
|
a default one will be selected for you.*
|
||||||
|
|
||||||
How to run them:
|
How to run them:
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,23 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
from fragments import garage, s3lat, shared
|
from fragments import garage, s3lat, shared
|
||||||
|
import sys
|
||||||
|
|
||||||
|
garage_version_flavor = {
|
||||||
|
"garage-v0.7": "v0.7.3",
|
||||||
|
"garage-v0.8": "89b8087ba81c508ba382aa6c9cb6bb3afa6a43c8"
|
||||||
|
}
|
||||||
|
garage_version = garage_version_flavor["garage-v0.7"]
|
||||||
|
for flavor in sys.argv[1:]:
|
||||||
|
if flavor in garage_version_flavor:
|
||||||
|
garage_version = garage_version_flavor[flavor]
|
||||||
|
|
||||||
if shared.id() == 1:
|
if shared.id() == 1:
|
||||||
garage.deploy_coord()
|
garage.deploy_coord(version=garage_version)
|
||||||
s3lat.on_garage()
|
s3lat.on_garage()
|
||||||
garage.delete_key()
|
garage.delete_key()
|
||||||
garage.destroy()
|
garage.destroy()
|
||||||
else:
|
else:
|
||||||
garage.deploy_follow()
|
garage.deploy_follow(version=garage_version)
|
||||||
garage.sync_on_key_down()
|
garage.sync_on_key_down()
|
||||||
garage.destroy()
|
garage.destroy()
|
||||||
shared.log("bye")
|
shared.log("bye")
|
||||||
|
|
|
@ -1,7 +1,13 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
from fragments import garage, warp, shared
|
from fragments import garage, warp, shared
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if shared.id() == 1:
|
if shared.id() == 1:
|
||||||
pass
|
garage.deploy_coord()
|
||||||
|
warp.on_garage()
|
||||||
|
garage.delete_key()
|
||||||
|
garage.destroy()
|
||||||
|
else
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue