-
Notifications
You must be signed in to change notification settings - Fork 73
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
Start all challenges at once? #396
Comments
Do you need it to happen in parallel or just want it automated? For the latter, wouldn't a simple bash loop do the trick? for yaml in */challenge.yaml; do pushd "$(dirname $yaml)"; kctf chal start; popd; done` |
I have a quick question regarding to using kctf host many challenages. Since kctf assign a load balancer to every chal, thus the load balancer cost for running 20 challanges is pretty high, do you know any way to reduce that cost ? |
It's certainly a pain point but we haven't found a good solution to it yet. If you try it out, please let us know how it went :). cc: @sirdarckcat |
Suppose there are 20+ challenges, is there support for kctf to start all of them at once? Since its tedious to go into each folder and start them individually.
The text was updated successfully, but these errors were encountered: