-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates README and adds an example for volumeClaim testing usage (#151)
* Feat: Add more information on how to use volumeClaim testing in the readme along with an example in config/samples Signed-off-by: Sagar Vakkala <sagarwakawaka@gmail.com> * fix: Review points Signed-off-by: Sagar Vakkala <sagarwakawaka@gmail.com> Signed-off-by: Sagar Vakkala <sagarwakawaka@gmail.com>
- Loading branch information
Showing
2 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
apiVersion: k6.io/v1alpha1 | ||
kind: K6 | ||
metadata: | ||
name: k6-sample | ||
namespace: load-test | ||
spec: | ||
parallelism: 4 | ||
script: | ||
volumeClaim: | ||
name: stress-test-volumeClaim | ||
# test.js should exist inside /test/ folder. | ||
# And, All the js files and directories test.js | ||
# is importing from should be inside the same directory as well. | ||
file: test.js |