1
0
Fork 0
mirror of https://github.com/kastenhq/kubestr.git synced 2024-12-14 11:57:56 +00:00
No description
Find a file
2021-02-05 14:40:09 -10:00
.github/workflows Update golangci-lint.yml 2020-12-16 08:25:12 -10:00
_posts Update 2021-02-07-FasterStorage.md 2021-02-05 14:40:09 -10:00
cmd Fio object parse and wait animation (#49) 2021-02-01 10:45:57 -10:00
docs removing unecessary shell scripts (#38) 2020-12-08 14:25:58 -10:00
extra Refactor snapshotter interface to support v1 snapshots (#47) 2021-01-12 16:48:51 -10:00
pkg Additionaltests (#50) 2021-02-05 10:49:17 -10:00
scripts moving script to docs 2020-10-19 08:29:24 -10:00
.gitignore logo fun 2020-10-15 15:09:13 -10:00
_config.yml Update _config.yml 2020-12-11 09:56:52 -10:00
Dockerfile Update Dockerfile 2020-12-09 12:10:27 -10:00
FIO.md Update FIO.md 2021-02-05 13:16:30 -10:00
go.mod Fio object parse and wait animation (#49) 2021-02-01 10:45:57 -10:00
go.sum Fio object parse and wait animation (#49) 2021-02-01 10:45:57 -10:00
LICENSE Initial commit 2020-08-31 15:05:36 -07:00
main.go pulling driver info from sig storage 2020-10-14 09:09:00 -10:00
README.md Update README.md 2021-02-05 13:07:56 -10:00

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.