-
-
Notifications
You must be signed in to change notification settings - Fork 40
Helm
github-actions[bot] edited this page Mar 5, 2026
·
2 revisions
There's an unofficial helm chart that may be used to deploy FileRise
helm install filerise oci://ghcr.io/dofevine/charts/filerisehelm install filerise oci://ghcr.io/dofevine/charts/filerise -f valueshelm delete filerise The chart supports any variable that's present on FileRise
env:
TIMEZONE: "America/New_York"
TOTAL_UPLOAD_SIZE: "10G"
SECURE: "false"
PERSISTENT_TOKENS_KEY: "change_me"
SCAN_ON_START: "true"
CHOWN_ON_START: "true"
# HTTP_PORT: "80"
# FR_BASE_PATH: "/files"
# FR_PUBLISHED_URL: "http://0.0.0.0/files"
# FR_TRUSTED_PROXIES: "10.0.0.0/8"The chart deppends on a storage class configured on the cluster. If the storage class is not defined, the default will be used.
storage:
keep: true # set this false if you would like to also delete the pvc when deleting the release
storageClass: ""
metadata:
size: 1Gi
users:
size: 1Gi
uploads:
size: 5GiThe chart was tested using Kong Ingress Controller. It should work with other ingress controllers. If using subpath it's important to set FR_PUBLISHED_URL and FR_BASE_PATH
ingress:
enabled: true
className: kong
annotations:
konghq.com/preserve-host: "true" # this tells the ingress to send the host to FileRise
konghq.com/strip-path: "true" # this removes the subpath from the requisition
hosts:
- host: ""
paths:
- path: /files/
pathType: PrefixIt's possible to connect direct to the service if not using a ingress
service:
type: ClusterIP # or loadbalancer if there's a loadbalancer availableIf not using a loadbalancer, you can connect using kubectl
kubectl port-forward service/filerise 8080:80Here is a working example
env:
TIMEZONE: "America/New_York"
TOTAL_UPLOAD_SIZE: "10G"
SECURE: "false"
PERSISTENT_TOKENS_KEY: "change_me"
SCAN_ON_START: "true"
CHOWN_ON_START: "true"
FR_BASE_PATH: "/files/"
FR_PUBLISHED_URL: "http://0.0.0.0/files/" # change it for server IP or dns
ingress:
enabled: true
className: kong
annotations:
konghq.com/preserve-host: "true"
konghq.com/strip-path: "true"
hosts:
- host: "" # add dns host if necessary
paths:
- path: /files/
pathType: Prefix- Change
PERSISTENT_TOKENS_KEY - Define resource limits and requests
- Use a reliable StorageClass
- Configure proper backups for persistent volumes
Below are the main configurable parameters available in values.yaml.
| Parameter | Description | Default |
|---|---|---|
replicaCount |
Number of Deployment replicas | 1 |
image.repository |
Container image repository | error311/filerise-docker |
image.tag |
Image tag | v3.5.2 |
image.pullPolicy |
Image pull policy | IfNotPresent |
imagePullSecrets |
Secrets for private repository | [] |
serviceAccount.create |
Create a ServiceAccount | false |
serviceAccount.name |
Custom name | "" |
serviceAccount.automount |
Automount API credentials | true |
podAnnotations |
Extra pod annotations | {} |
podLabels |
Extra pod labels | {} |
service.type |
Kubernetes Service type | ClusterIP |
service.port |
Service port | 8080 |
ingress.enabled |
Enable Ingress | false |
ingress.className |
Ingress class | "" |
ingress.hosts |
Configured hosts | "" |
ingress.tls |
TLS configuration | [] |
httpRoute.enabled |
Enable HTTPRoute | false |
httpRoute.annotations |
Annotations | {} |
httpRoute.parentRefs |
Target Gateway | {} |
httpRoute.hostnames |
Hostnames | [] |
httpRoute.rules |
Routing rules | {} |
autoscaling.enabled |
Enable HPA | false |
autoscaling.minReplicas |
Minimum replicas | 1 |
autoscaling.maxReplicas |
Maximum replicas | 10 |
autoscaling.targetCPUUtilizationPercentage |
CPU utilization target | 80 |
autoscaling.targetMemoryUtilizationPercentage |
Memory utilization target | 2Gi |
volumes |
list of volumes. See values.yaml | [] |
storage.keep |
Enable helm resource policy keep | true |
storage.storageClass |
Storage Class name. If empty will use cluster default | "" |
storage.metadata.size |
Size of pvc used for metadata | [] |
storage.users.size |
Size of pvc used for metadata | [] |
storage.uploads.size |
Size of pvc used for metadata | [] |
nodeselector |
Definition of the node that the pod will run. See k8s docs | {} |
affinity |
Definition of pod affinity and anti-affity. See k8s docs | {} |
Docs · Support · FileRise.net · Changelog
- Admin panel
- Admin gotchas
- Common env vars
- Environment variables full reference
- ACL and permissions
- ACL recipes
- Nginx setup
- Reverse proxy and subpath
- WebDAV
- WebDAV via curl
- WebDAV security and clients
- ONLYOFFICE
- Encryption at rest
- OIDC and SSO
- CIFS share auto metadata
- Sharing and public links
- Upload limits and PHP tuning
- Logs and diagnostics
- Backup and restore
- Upgrade and migration
- Migration checklist
- Maintenance scripts
- Performance quickstart
- Performance tuning
- Security hardening