mirror of
https://github.com/seerr-team/seerr.git
synced 2026-04-20 23:38:19 -04:00
chore(helm): document storageclass parameter (#2909)
This commit is contained in:
committed by
GitHub
parent
5fdedb1591
commit
22d3b0fb88
@@ -1,6 +1,6 @@
|
||||
# seerr-chart
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
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 |
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user