diff --git a/charts/seerr-chart/README.md b/charts/seerr-chart/README.md index 799decae7..a79c50f73 100644 --- a/charts/seerr-chart/README.md +++ b/charts/seerr-chart/README.md @@ -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 -* +* ## 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 | diff --git a/charts/seerr-chart/values.yaml b/charts/seerr-chart/values.yaml index 41997ff2f..c9bd0e22e 100644 --- a/charts/seerr-chart/values.yaml +++ b/charts/seerr-chart/values.yaml @@ -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