https://github.com/quobyte/quobyte-k8s-resources
Anything Kubernetes users need to consume or provide Quobyte persistent storage
https://github.com/quobyte/quobyte-k8s-resources
Last synced: 10 days ago
JSON representation
Anything Kubernetes users need to consume or provide Quobyte persistent storage
- Host: GitHub
- URL: https://github.com/quobyte/quobyte-k8s-resources
- Owner: quobyte
- License: apache-2.0
- Created: 2022-09-13T12:56:29.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-07T08:34:39.000Z (over 1 year ago)
- Last Synced: 2025-01-07T17:17:50.125Z (over 1 year ago)
- Language: Smarty
- Size: 311 KB
- Stars: 3
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Quobyte Kubernetes Resources
This repository collects all resources needed to
* Set up a Quobyte cluster to provide persistent storage
* Set up Quobyte clients and CSI drivers to consume persistent storage
## Providing Storage
Installing a Quobyte cluster requires a single Helm chart:
```
helm repo add quobyte https://quobyte.github.io/quobyte-k8s-resources/helm-charts
helm install my-storage-cluster quobyte/quobyte-cluster
```
Please have a look at [requirements document](Requirements.md) if you consider to run Quobyte for production workloads.
## Consuming Storage
To access a Quobyte cluster from Kubernetes
"quobyte-client" and "quobyte-csi" charts need to be deployed:
```
helm repo add quobyte https://quobyte.github.io/quobyte-k8s-resources/helm-charts
helm install my-storage-client quobyte/quobyte-client
helm install my-storage-csi quobyte/quobyte-csi
```
To see all available chart values for a specific chart:
```
helm show values quobyte/quobyte-
```