mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 08:11:03 +00:00
3c50838dc3
* change (CI): markdown link checker * Fix some invalid doc links (re-run of cargo-unleash gen-readme w/ fixes). * Fix some invalid doc links * Fix some invalid doc links * Fix some links * Fix some links * Apply @bkchr suggestions from code review Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Fix more links * Fix more links * typo * Fix more links * Fix more links * Ignore valid link .. check wrongly sees it as invalid * Fix style issue * Fix style issue * change (CI): update style guide link * change (lib): suggestions Co-authored-by: Dan Forbes <dan@danforbes.dev> Co-authored-by: Steve Degosserie <steve@parity.io> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
2.7 KiB
2.7 KiB
chaostest
A cli for chaos testing on substrate
Usage
$ npm install -g chaostest // yarn add global chaostest
$ chaostest COMMAND
running command...
$ chaostest (-v|--version|version)
chaostest/0.0.0 darwin-x64 node-v8.16.0
$ chaostest --help [COMMAND]
USAGE
$ chaostest COMMAND
...
Commands
chaostest spawn
Spawn a testnet based on your local k8s configuration. Could be either a dev node, a two node alicebob chain or a customized chain with various validators/fullnodes.
USAGE
$ chaostest spawn [ARGUMENTS] [FLAGS]
Arguments
dev, a single fullnode in --dev mode
alicebob, a two nodes private chain with Alice as bootnode and Bob as validator
[chainName], a customized chain deployed with -v numbers of validators and -n numbers of fullnodes
Flags
--image, -i, the image tag of the certain substrate version you want to deploy
--port, -p, the port to expose when image is deployed in a pod
--namespace, the desired namespace to deploy on
--validator, -v, the number of substrate validators to deploy
--node, -n, the number of full nodes, if not set but exists, default to 1
DESCRIPTION
...
Extra documentation goes here
See code: src/commands/spawn/index.js
chaostest singlenodeheight
Test against a fullnode on --dev mode to check if it can successfully produce blocks to a certain height.
USAGE
$ chaostest singlenodeheight [FLAGS]
FLAGS
-h , the desired height of blocks to check if reachable, this only works with integers smaller than 2^6
-t, the wait time out before it halts the polling
See code: src/commands/singlenodeheight/index.js
chaostest clean
Clean up the k8s deployment by namespace.
USAGE
$ chaostest clean [FLAGS]
FLAGS
-n , the desired namespace to delete on your k8s cluster
See code: src/commands/clean/index.js