-
Notifications
You must be signed in to change notification settings - Fork 41
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
TEST_NAME is not supported in k8s_scale.sh #261
Comments
:-) - you are right, it looks like at some point during development that feature got 'lost'. It should be implemented something like the kata code does at https://github.com/kata-containers/tests/blob/master/metrics/density/fast_footprint.sh#L98 , so: TEST_NAME="${TEST_NAME:-k8s scaling}" or similar. Note btw, be aware that if you change the name of the test, then the name of the results .json file will change (which is what you may intend), but, that means that the R pdf report generator may not then find that file to process. That is sort of deliberate. Changing the names of the results files can be very useful for hand examining or scripting many runs, but, may not then work with the automated report generation. |
@marcemq, @grahamwhaley , do you think we could use That is, every test script would create separate json file ( |
@askervin - given how we predominantly run the tests today, yes, that is probably a sensible thing to do. Originally the data was consumed by CIs, so the subdirs were not necessary - but now it is mostly a human driven thing with the R scripts, it makes sense. |
What
From
k8s_scale.sh
help, it is stated thatTEST_NAME
can be set to over-ride the default JSON results filename, which is not true:When attempting to use such variable the result JSON file name is still
k8s-scaling.json
And the
k8s_parallel.sh
,k8s_scale_nc
andk8s_scale_rapid
might have the same behaviour.The text was updated successfully, but these errors were encountered: