mirror of
https://github.com/seerr-team/seerr.git
synced 2026-04-17 05:48:10 -04:00
seerr-chart
Seerr helm chart for Kubernetes
Homepage: https://github.com/seerr-team/seerr
Maintainers
| Name | Url | |
|---|---|---|
| Seerr Team | https://github.com/orgs/seerr-team/people |
Source Code
Requirements
Kubernetes: >=1.23.0-0
Installation
Refer to Seerr kubernetes documentation
Update Notes
Updating to 3.0.0
Nothing has changed; we just rebranded the jellyseerr Helm chart to seerr 🥳 refer to our Migration guide.
Updating to 2.7.0
Seerr is a stateful application and it is not designed to have multiple replicas. In version 2.7.0 we address this by:
- replacing
DeploymentwithStatefulSet - removing
replicaCountvalue
If replicaCount value was used - remove it. Helm update should work fine after that.
Values
| Key | Type | Default | Description |
|---|---|---|---|
| affinity | object | {} |
|
| config | object | {"persistence":{"accessModes":["ReadWriteOnce"],"annotations":{},"existingClaim":"","name":"","size":"5Gi","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.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 |
| extraEnvFrom | list | [] |
Environment variables from secrets or configmaps to add to the seerr pods |
| fullnameOverride | string | "" |
|
| image.pullPolicy | string | "IfNotPresent" |
|
| image.registry | string | "ghcr.io" |
|
| image.repository | string | "seerr-team/seerr" |
|
| image.sha | string | "" |
|
| image.tag | string | "" |
Overrides the image tag whose default is the chart appVersion. |
| imagePullSecrets | list | [] |
|
| ingress.annotations | object | {} |
|
| ingress.enabled | bool | false |
|
| ingress.hosts[0].host | string | "chart-example.local" |
|
| ingress.hosts[0].paths[0].path | string | "/" |
|
| ingress.hosts[0].paths[0].pathType | string | "ImplementationSpecific" |
|
| ingress.ingressClassName | string | "" |
|
| ingress.tls | list | [] |
|
| nameOverride | string | "" |
|
| nodeSelector | object | {} |
|
| podAnnotations | object | {} |
|
| podLabels | object | {} |
|
| podSecurityContext.fsGroup | int | 1000 |
|
| podSecurityContext.fsGroupChangePolicy | string | "OnRootMismatch" |
|
| probes.livenessProbe | object | {"initialDelaySeconds":20,"periodSeconds":15,"timeoutSeconds":3} |
Configure liveness probe |
| probes.readinessProbe | object | {"initialDelaySeconds":60,"periodSeconds":15,"timeoutSeconds":3} |
Configure readiness probe |
| probes.startupProbe | string | nil |
Configure startup probe |
| resources | object | {} |
|
| route.main.additionalRules | list | [] |
|
| route.main.annotations | object | {} |
|
| route.main.apiVersion | string | "gateway.networking.k8s.io/v1" |
Set the route apiVersion, e.g. gateway.networking.k8s.io/v1 or gateway.networking.k8s.io/v1alpha2 |
| route.main.enabled | bool | false |
Enables or disables the Gateway API route |
| route.main.filters | list | [] |
|
| route.main.hostnames | list | [] |
|
| route.main.httpsRedirect | bool | false |
To redirect to HTTPS, create a new route object under the main route and enable this option. This should only be used with HTTP-like routes, such as HTTPRoute or GRPCRoute. Reference |
| route.main.kind | string | "HTTPRoute" |
Set the route kind. Note that experimental kinds require changing apiVersion |
| route.main.labels | object | {} |
|
| route.main.matches[0].path.type | string | "PathPrefix" |
|
| route.main.matches[0].path.value | string | "/" |
|
| route.main.parentRefs | list | [] |
|
| securityContext.allowPrivilegeEscalation | bool | false |
|
| securityContext.capabilities.drop[0] | string | "ALL" |
|
| securityContext.privileged | bool | false |
|
| securityContext.readOnlyRootFilesystem | bool | false |
|
| securityContext.runAsGroup | int | 1000 |
|
| securityContext.runAsNonRoot | bool | true |
|
| securityContext.runAsUser | int | 1000 |
|
| securityContext.seccompProfile.type | string | "RuntimeDefault" |
|
| service.port | int | 80 |
|
| service.type | string | "ClusterIP" |
|
| serviceAccount.annotations | object | {} |
Annotations to add to the service account |
| serviceAccount.automount | bool | true |
Automatically mount a ServiceAccount's API credentials? |
| serviceAccount.create | bool | true |
Specifies whether a service account should be created |
| serviceAccount.name | string | "" |
If not set and create is true, a name is generated using the fullname template |
| tolerations | list | [] |
|
| volumeMounts | list | [] |
Additional volumeMounts on the output StatefulSet definition. |
| volumes | list | [] |
Additional volumes on the output StatefulSet definition. |