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
Sirish Bathina dc406614dc
Multi-platform kubestr image (#316)
* multi-platform kubestr image

* Adjusting Dockerfile to do a native compile + emulated image build

* remove explicit TARGETPLATFORM
2024-12-02 14:25:19 -10:00
.github Multi-platform kubestr image (#316) 2024-12-02 14:25:19 -10:00
_posts Update 2021-02-07-FasterStorage.md 2021-02-05 14:40:09 -10:00
cmd Refactoring the file-restore command to use a --fromPVC arg (#299) 2024-09-05 18:41:52 -05:00
docs Update README.md 2021-02-19 08:28:52 -10:00
extra Adding nutanix driver (#91) 2021-10-20 09:50:17 -10:00
pkg Fixing errors in --path flag for kubestr file-restore (#300) 2024-09-13 13:29:53 -05:00
scripts Avoid magic numbers in driver generation script (#73) 2021-06-08 10:07:35 -07:00
.gitignore Handle improper driver names (#72) 2021-06-02 12:24:12 -07:00
.goreleaser.yml Update .goreleaser.yml (#162) 2023-07-25 08:41:53 -10:00
_config.yml Update _config.yml 2020-12-11 09:56:52 -10:00
Dockerfile Multi-platform kubestr image (#316) 2024-12-02 14:25:19 -10:00
FIO.md Update FIO.md 2021-04-07 07:27:59 -10:00
go.mod K10-23320: Fix function definition for Create and CreateFromSource (#274) 2024-08-05 14:09:36 +05:30
go.sum K10-23320: Fix function definition for Create and CreateFromSource (#274) 2024-08-05 14:09:36 +05:30
index.md Update index.md 2021-02-05 14:48:35 -10:00
LICENSE Initial commit 2020-08-31 15:05:36 -07:00
main.go Separate JSON output, emit non-zero exit code (#82) 2021-10-07 07:55:17 -10:00
README.md Added Resources (#77) 2023-12-14 11:56:28 -08: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.

asciicast

Resources

Video

Blogs

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>

To check if a StorageClass supports a block mount -

  • Run ./kubestr blockmount -s StorageClass

Roadmap

  • In the future we plan to allow users to post their FIO results and compare to others.