Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kostiantyn-matsebora/helm-storage-provisioner
Provisioning storage definition (PersistentVolumeClaim and PersistentVolume objects)
https://github.com/kostiantyn-matsebora/helm-storage-provisioner
helm kubernetes kubernetes-deployment longhorn longhorn-volume persistence persistent-storage provisioning pv pvc
Last synced: about 1 month ago
JSON representation
Provisioning storage definition (PersistentVolumeClaim and PersistentVolume objects)
- Host: GitHub
- URL: https://github.com/kostiantyn-matsebora/helm-storage-provisioner
- Owner: kostiantyn-matsebora
- License: mit
- Created: 2024-01-31T15:58:50.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-09-16T15:07:29.000Z (3 months ago)
- Last Synced: 2024-09-17T17:30:59.529Z (3 months ago)
- Topics: helm, kubernetes, kubernetes-deployment, longhorn, longhorn-volume, persistence, persistent-storage, provisioning, pv, pvc
- Language: Smarty
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Storage provisioner
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=kostiantyn-matsebora_helm-storage-provisioner&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=kostiantyn-matsebora_helm-storage-provisioner)
Helm chart for provisioning storage definition (PersistentVolumeClaim and PersistentVolume objects).
Can be useful in the following cases:
* When you want to separate storage and application management.
* When you want to bind `PersistenVolume` with an already existing volume handle (for instance manually created [Longhorn](https://longhorn.io/) volume.)## Configuration
```yaml
volumes:
# Name of PVC and PV
- name: # media
# Size of volume
size: # 400Gi
# Name of storage class
storageClassName: # longhorn-large
# Name of Longhorn pre-created volume
volumeHandle: # media-storage
# List of volume access modes
accessModes: []
pv: # Optional, need to specify only if do not want to create pv, by default true
enabled: # true
pvc: # Optional, need to specify only if do not want to create pv, by default true
enabled: # true
```## Example
```yaml
volumes:
- accessModes:
- ReadWriteMany
name: media
size: 400Gi
storageClassName: longhorn-large
volumeHandle: media-storage
- accessModes:
- ReadWriteMany
name: qbittorrent-downloads
size: 10Gi
storageClassName: longhorn-fast
volumeHandle: downloads
- accessModes:
- ReadWriteOnce
name: jellyfin-cache
size: 5Gi
storageClassName: longhorn-fast
volumeHandle: jellyfin-cache
```## Usage
Add helm [repository](https://kostiantyn-matsebora.github.io/helm-charts/) first:
```bash
helm repo add kostiantyn-matsebora https://kostiantyn-matsebora.github.io/helm-charts/
```Install/upgrade helm chart using your custom values:
```bash
# oauth2-proxy
helm upgrade storage kostiantyn-matsebora/storage-provisioner --install --values ./custom-values.yaml```
## Contributing
If you experience any issues, have a question or a suggestion, or if you wish
to contribute, feel free to [open an issue][issues] or
[start a discussion][discussions].[issues]: https://github.com/kostiantyn-matsebora/storage-provisioner/issues
[discussions]: https://github.com/storage-provisioner/discussions## License
[`MIT License`](../LICENSE)