mirror of
https://github.com/kastenhq/kubestr.git
synced 2024-12-14 11:57:56 +00:00
No description
4d3cb00b76
* Allow for printing FIO and CSICheck JSON results to file Fixes #79 * Use the file output function in Baseline too, remove double printing * Emit non-zero exit code when error has occurred Fixes #80 * Don't output twice in error case * Added godoc and a note in command help text * Eliminate weird variable names, make godoc clearer * Error handling for file output |
||
---|---|---|
.github/workflows | ||
_posts | ||
cmd | ||
docs | ||
extra | ||
pkg | ||
scripts | ||
.gitignore | ||
_config.yml | ||
Dockerfile | ||
FIO.md | ||
go.mod | ||
go.sum | ||
index.md | ||
LICENSE | ||
main.go | ||
README.md |
Kubestr
What is it?
Kubestr is a collection of tools to discover, validate and evaluate your kubernetes storage options.
As adoption of kubernetes grows so have the persistent storage offerings that are available to users. The introduction of CSI (Container Storage Interface) has enabled storage providers to develop drivers with ease. In fact there are around a 100 different CSI drivers available today. Along with the existing in-tree providers, these options can make choosing the right storage difficult.
Kubestr can assist in the following ways-
- Identify the various storage options present in a cluster.
- Validate if the storage options are configured correctly.
- Evaluate the storage using common benchmarking tools like FIO.
Using Kubestr
To install the tool -
- Ensure that the kubernetes context is set and the cluster is accessible through your terminal. (Does kubectl work?)
- Download the latest release here.
- Unpack the tool and make it an executable
chmod +x kubestr
.
To discover available storage options -
- Run
./kubestr
To run an FIO test -
- Run
./kubestr fio -s <storage class>
- Additional options like
--size
and--fiofile
can be specified. - For more information visit our fio page.
To check a CSI drivers snapshot and restore capabilities -
- Run
./kubestr csicheck -s <storage class> -v <volume snapshot class>
Roadmap
- In the future we plan to allow users to post their FIO results and compare to others.