chore(helm): document storageclass parameter (#2909)

This commit is contained in:
Danju Visvanathan
2026-04-20 00:16:21 +10:00
committed by GitHub
parent 5fdedb1591
commit 22d3b0fb88
2 changed files with 6 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
# seerr-chart
![Version: 3.5.0](https://img.shields.io/badge/Version-3.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.2.0](https://img.shields.io/badge/AppVersion-v3.2.0-informational?style=flat-square)
![Version: 3.5.1](https://img.shields.io/badge/Version-3.5.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.2.0](https://img.shields.io/badge/AppVersion-v3.2.0-informational?style=flat-square)
Seerr helm chart for Kubernetes
@@ -14,7 +14,7 @@ Seerr helm chart for Kubernetes
## Source Code
* <https://github.com/seerr-team/seerr/tree/main/charts/seerr>
* <https://github.com/seerr-team/seerr/tree/main/charts/seerr-chart>
## Requirements
@@ -44,12 +44,13 @@ If `replicaCount` value was used - remove it. Helm update should work fine after
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` | |
| config | object | `{"persistence":{"accessModes":["ReadWriteOnce"],"annotations":{},"existingClaim":"","name":"","size":"5Gi","subPath":"","volumeName":""}}` | Creating PVC to store configuration |
| config | object | `{"persistence":{"accessModes":["ReadWriteOnce"],"annotations":{},"existingClaim":"","name":"","size":"5Gi","storageClass":"","subPath":"","volumeName":""}}` | Creating PVC to store configuration |
| config.persistence.accessModes | list | `["ReadWriteOnce"]` | Access modes of persistent disk |
| config.persistence.annotations | object | `{}` | Annotations for PVCs |
| config.persistence.existingClaim | string | `""` | Specify an existing `PersistentVolumeClaim` to use. If this value is provided, the default PVC will not be created |
| config.persistence.name | string | `""` | Config name |
| config.persistence.size | string | `"5Gi"` | Size of persistent disk |
| config.persistence.storageClass | string | `""` | Storage class for the PVC. Set to "-" to disable dynamic provisioning. Uses default storage class if no value is provided |
| config.persistence.subPath | string | `""` | Subpath of the pvc which should be mounted |
| config.persistence.volumeName | string | `""` | Name of the permanent volume to reference in the claim. Can be used to bind to existing volumes. |
| extraEnv | list | `[]` | Environment variables to add to the seerr pods |

View File

@@ -90,6 +90,8 @@ config:
existingClaim: ''
# -- Subpath of the pvc which should be mounted
subPath: ''
# -- Storage class for the PVC. Set to "-" to disable dynamic provisioning. Uses default storage class if no value is provided
storageClass: ''
ingress:
enabled: false