Skip to main content

Filebrowser on GKE Autopilot

Filebrowser on GKE Autopilot

File Browser is a lightweight, open-source web file manager written in Go — it serves a directory tree over HTTP for browsing, uploading, editing, and sharing files. This module deploys Filebrowser on GKE Autopilot on top of the App_GKE foundation, which provisions and manages the shared Google Cloud and Kubernetes infrastructure.

This guide focuses on the cloud services Filebrowser uses and how to explore and operate them from the Google Cloud Console and the command line. For the mechanics that are common to every GKE application — Workload Identity, ingress, autoscaling, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC Service Controls, backups, and the deployment lifecycle — refer to the App_GKE foundation guide rather than repeating them here.


1. Overview

Filebrowser runs as a single Go web workload. It is deliberately minimal — no SQL database, no cache, no queue — so the deployment wires together a small set of Google Cloud services:

CapabilityGoogle Cloud serviceNotes
ComputeGKE AutopilotSingle Go pod, 1 vCPU / 1 GiB by default; min = max = 1
Persistent stateCloud Storage (GCS FUSE) or a block PVCMounted at /database; holds the embedded SQLite DB
DatabaseNone (embedded SQLite)database_type = NONE; no Cloud SQL is provisioned
Cache & queueNoneFilebrowser uses no Redis
SecretsSecret ManagerNo app secrets generated; users live in the SQLite DB
IngressCloud Load BalancingClusterIP Service by default; custom domain + managed certificate available

Sensible defaults worth knowing up front:

  • State lives in an embedded SQLite file at /database. Filebrowser has no Cloud SQL database. Its users, settings, and share links are stored in /database/filebrowser.db. By default /database is a Cloud Storage bucket mounted via GCS FUSE; enabling a StatefulSet swaps it for a block PVC (see below).
  • GCS FUSE vs. block PVC. With stateful_pvc_enabled = true the workload becomes a StatefulSet with a persistent block PVC (default 20Gi) mounted at /database, and the GCS FUSE volume is automatically disabled to avoid a double-mount at the same path. A block PVC gives SQLite proper POSIX file locking and is the more robust choice for a stateful file manager.
  • Single instance by design. min_instance_count = max_instance_count = 1. SQLite does not tolerate concurrent writers — keep a single replica.
  • Default login is admin / admin. Filebrowser seeds this on first boot; change it in the web UI immediately after deploy.
  • No Redis, no init job. enable_redis = false and no db-init job runs; the pod is ready as soon as the container starts.
  • Container port 80. Filebrowser serves plain HTTP/1.1 on port 80.
  • Custom domain is on by default. enable_custom_domain = true and reserve_static_ip = true; supply application_domains to serve a hostname with a Google-managed certificate.

2. Google Cloud Services & How to Explore Them

All commands assume you have run gcloud container clusters get-credentials <cluster> --region <region> --project <project> and that PROJECT, REGION, and NAMESPACE are set. The namespace and other identifiers are reported in the deployment Outputs.

A. GKE Autopilot — the Filebrowser workload

Filebrowser runs as a single-replica Deployment (or a StatefulSet when stateful_pvc_enabled = true) scheduled on Autopilot, which bills for the CPU/memory the pod actually requests.

  • Console: Kubernetes Engine → Workloads → select the Filebrowser workload to see pods, revisions, and events. Kubernetes Engine → Services & Ingress shows the Service and any external IP.
  • CLI:
    kubectl get pods,svc -n "$NAMESPACE"
    kubectl get statefulset,pvc -n "$NAMESPACE" # when stateful_pvc_enabled = true
    kubectl logs -n "$NAMESPACE" deploy/<service-name> --tail=100

See App_GKE for how Autopilot, scaling, and the workload type (Deployment vs StatefulSet) are managed.

B. Cloud Storage / block PVC — persistent state

Filebrowser has no Cloud SQL database. Its embedded SQLite database (/database/filebrowser.db) is stored on the /database mount:

  • Default (Deployment): a dedicated Cloud Storage bucket mounted via GCS FUSE through the CSI driver.

  • StatefulSet (stateful_pvc_enabled = true): a block PersistentVolumeClaim (default 20Gi, StorageClass standard-rwo) mounted at /database; the GCS FUSE volume is disabled to avoid a double-mount.

  • Console: Cloud Storage → Buckets; or Kubernetes Engine → Storage → PVCs.

  • CLI:

    gcloud storage buckets list --project "$PROJECT" --filter="name~storage"   # GCS FUSE mode
    gcloud storage ls gs://<data-bucket>/filebrowser.db
    kubectl get pvc -n "$NAMESPACE" # PVC mode

See App_GKE for CMEK options, GCS FUSE, and StatefulSet PVCs.

C. Secret Manager

Filebrowser generates no application secrets — there is no encryption key or JWT secret to manage, because all identity state lives in the SQLite database. Secret Manager is still used by the foundation for platform-managed secrets (e.g. CI/CD tokens if configured).

  • Console: Security → Secret Manager.
  • CLI:
    gcloud secrets list --project "$PROJECT" --filter="name~filebrowser"

See App_GKE for the Secret Store CSI integration and rotation.

D. Networking & ingress

By default the Service is ClusterIP, with enable_custom_domain = true and reserve_static_ip = true so an Ingress with a Google-managed certificate can serve a supplied hostname on a stable IP. Without a custom domain the workload is reachable in-cluster at http://<service>.<namespace>.svc.cluster.local.

  • Console: Network services → Load balancing; VPC network → IP addresses.
  • CLI:
    kubectl get ingress,svc -n "$NAMESPACE"
    gcloud compute addresses list --project "$PROJECT"

See App_GKE for custom domains, Cloud CDN, and static IP details.

E. Cloud Logging & Monitoring

Pod stdout/stderr flow to Cloud Logging; GKE metrics flow to Cloud Monitoring. Optional uptime checks and alert policies are available.

  • Console: Logging → Logs Explorer; Monitoring → Dashboards / Alerting.
  • CLI:
    gcloud logging read 'resource.type="k8s_container" AND resource.labels.namespace_name="'"$NAMESPACE"'"' \
    --project "$PROJECT" --limit 50

3. Filebrowser Application Behaviour

  • No first-deploy database setup. There is no db-init job and no Cloud SQL instance. On first start the Filebrowser binary creates its SQLite database at /database/filebrowser.db if it does not already exist and seeds the default admin/admin user.
  • State persistence. Users, settings, and share links live entirely in /database/filebrowser.db on the /database mount (GCS FUSE bucket or block PVC), surviving restarts and redeploys. FB_ROOT = /srv is the file tree the app serves.
  • Default credentials must be changed. The seeded admin/admin login is well-known. Log in and change the password (and ideally the username) in the web UI immediately after the first deploy.
  • Single-writer constraint. The embedded SQLite database does not support concurrent writers. Keep min_instance_count = max_instance_count = 1; a StatefulSet block PVC gives proper file locking but is still single-replica.
  • Health path. Startup and liveness probes target /health — Filebrowser's unauthenticated health endpoint, which returns 200 as soon as the server is listening:
    kubectl exec -n "$NAMESPACE" deploy/<service-name> -- wget -qO- http://localhost:80/health
  • No Redis. enable_redis = false; Filebrowser is a self-contained file manager with no queue or cache. The App_GKE default of enable_redis = true is explicitly overridden.
  • Custom-built image needs imagePullPolicy = Always. The image is a thin wrapper built and mirrored into Artifact Registry; App_GKE sets imagePullPolicy = Always for custom/mirrored images so a rebuild-redeploy always pulls the fresh layer.

4. Configuration Variables

Variables are grouped exactly as they appear on the deployment platform. Only settings specific to or notable for Filebrowser are listed; every other input is inherited from App_GKE with its standard behaviour and defaults.

Group 1 — Project & Identity

VariableDefaultDescription
project_id(required)Target Google Cloud project.
regionus-central1Region for the workload and regional resources.

Group 3 — Application Identity

VariableDefaultDescription
application_namefilebrowserBase name for resources. Do not change after first deploy.
application_versionlatestFilebrowser image tag. latest resolves to the pinned v2.32.0 at build time; pin explicitly in production.

Group 4 — Runtime & Scaling

VariableDefaultDescription
deploy_applicationtrueSet false to provision infrastructure only.
cpu_limit1000mCPU per pod; Filebrowser is lightweight.
memory_limit1GiMemory per pod; 256Mi is ample for the Go server.
min_instance_count1Minimum replicas. Keep at 1 — SQLite is single-writer.
max_instance_count1Keep at 1 to prevent concurrent SQLite writers.
container_port80Filebrowser's HTTP/1.1 listener.
enable_cloudsql_volumefalseFilebrowser has no Cloud SQL; leave false.
enable_image_mirroringtrueMirror the Filebrowser image into Artifact Registry.

Group 6 — GKE Backend & Cluster

VariableDefaultDescription
service_typeClusterIPHow the Kubernetes Service is exposed; front with an Ingress via enable_custom_domain.
workload_typenullAuto-resolves to StatefulSet when stateful_pvc_enabled = true, else Deployment.
session_affinityNoneSingle replica, so sticky routing is unnecessary.

Group 7 — StatefulSet

VariableDefaultDescription
stateful_pvc_enablednullSet true to store /database on a block PVC instead of GCS FUSE (recommended for SQLite file locking).
stateful_pvc_size20GiPer-pod PVC storage size.
stateful_pvc_mount_path/databaseMount path — must match FB_DATABASE's directory.
stateful_pvc_storage_classstandard-rwoStorageClass (standard-rwo Balanced PD; premium-rwo for higher IOPS).

Group 9 — Reliability Policies

VariableDefaultDescription
enable_pod_disruption_budgettrueProtect availability during node upgrades.
pdb_min_available1Minimum pods available during voluntary disruptions.

Group 10 — Observability & Health

VariableDefaultDescription
startup_probeHTTP /health 15s delayStartup probe; Filebrowser exposes /health once ready.
liveness_probeHTTP /health 30s delayLiveness probe on the unauthenticated /health endpoint.
uptime_check_config{enabled=false, path="/health"}Cloud Monitoring uptime check; disabled by default.
alert_policies[]Optional metric alert policies.

Group 13 — Filesystem (NFS)

VariableDefaultDescription
enable_nfsfalseNFS is off by default; not needed for Filebrowser.
nfs_mount_path/mnt/nfsMount path inside the container.

Group 14 — Cloud Storage & Artifact Registry

VariableDefaultDescription
create_cloud_storagetrueCreate the Filebrowser /database bucket (and any extra storage_buckets).
storage_buckets[]Additional buckets to provision.
gcs_volumes[]Extra GCS FUSE mounts. The /database bucket is added automatically (unless a PVC is used).
manage_storage_kms_iam / enable_artifact_registry_cmekfalseCMEK options.

Group 15 — Redis Cache & Queue

VariableDefaultDescription
enable_redisfalseFilebrowser uses no Redis; the App_GKE default of true is overridden to false.

Group 16 — Database Backend

Not applicable — Filebrowser has no SQL database. database_password_length and db_name / db_user are forwarded to the foundation only for compatibility; database_type is fixed to NONE by Filebrowser_Common.

Group 19 — Custom Domain, Static IP & Networking

VariableDefaultDescription
enable_custom_domaintrueProvision Ingress for custom hostnames + managed certificate.
application_domains[]Hostnames to serve.
reserve_static_iptrueStable external IP across redeploys.

Group 20 — Identity-Aware Proxy (IAP)

VariableDefaultDescription
enable_iapfalseRequire Google sign-in in front of Filebrowser.
iap_authorized_users / iap_authorized_groups[]Who may access.
iap_oauth_client_id / iap_oauth_client_secret""Required when IAP is enabled (sensitive).

Group 22 — VPC Service Controls & Audit Logging

VariableDefaultDescription
enable_vpc_scfalseEnforce a VPC-SC perimeter (requires organization_id).
vpc_cidr_ranges / vpc_sc_dry_run(set)Access level CIDRs / dry-run mode.
enable_audit_loggingfalseDetailed Cloud Audit Logs.

All other inputs follow standard App_GKE behaviour.


5. Outputs

These values are returned on a successful deployment and are the quickest way to locate and explore the running resources.

OutputDescription
service_nameKubernetes Service name.
namespaceNamespace the workload runs in.
service_cluster_ipIn-cluster ClusterIP.
stage_service_cluster_ipsMap of ClusterIPs for stage-specific services.
service_external_ipExternal LoadBalancer IP (when a static IP is reserved).
service_urlURL to reach Filebrowser.
storage_bucketsCreated Cloud Storage buckets (includes the /database bucket in GCS FUSE mode).
network_name / network_exists / regionsVPC network, presence, available regions.
container_image / container_registryDeployed image and Artifact Registry repo.
monitoring_enabled / monitoring_notification_channelsMonitoring status and channels.
initialization_jobsNames of any init jobs (empty by default).
statefulset_nameName of the StatefulSet (when stateful_pvc_enabled = true).
deployment_id / tenant_id / resource_prefixNaming identifiers.
project_id / project_numberProject identifiers.
cicd_enabled / cicd_configurationCI/CD status and details (repo, trigger, registry).
github_repository_url / github_repository_owner / github_repository_nameCI/CD GitHub details.
artifact_registry_repository / cloudbuild_trigger_name / cloudbuild_trigger_idRegistry and build trigger.
kubernetes_readyWhether the cluster/workload is ready.
vpc_sc_enabled / vpc_sc_perimeter_name / vpc_sc_dry_run_modeVPC-SC status.
audit_logging_enabled / artifact_registry_cmek_enabledAudit logging and CMEK status.

6. Configuration Pitfalls & Sensible Defaults

Risk: Critical (data loss / outage / security) — High (service degraded) — Medium (cost or partial degradation) — Low (minor).

Inherited plan-time validation. This module passes its configuration through the App_GKE foundation engine, which validates values and combinations at plan time — IAP with no OAuth credentials, min_instance_count > max_instance_count, workload_type = Deployment alongside stateful_pvc_enabled = true, ResourceQuota memory values without binary unit suffixes. Invalid configuration fails the plan with a clear, named error before any resource is created, so most mistakes below are caught up front rather than at apply or runtime.

SettingSensible valueRiskConsequence if wrong
/database volume (bucket or PVC)Never deleteCriticalThe embedded SQLite DB lives here; deleting it destroys all users, settings, and share links.
admin / admin (seeded login)Change on first loginCriticalLeaving the default credential lets anyone who can reach the service take full control.
max_instance_count1High>1 puts concurrent writers on the single SQLite database, corrupting it.
stateful_pvc_mount_path/databaseHighMust match FB_DATABASE's directory; a mismatch stores the DB on ephemeral disk and loses state on restart.
stateful_pvc_enabled + enable_gcs_storage_volumeLet Common disable GCS FUSEHighBoth at /database double-mount; Common auto-sets enable_gcs_storage_volume = false when the PVC is on — do not force both.
container_port80HighFilebrowser listens on 80; a different port makes the startup probe fail and the pod never becomes Ready.
startup_probe / liveness_probe path/healthHighPointing probes at an authenticated path returns 401/403 and the pod never goes Ready.
enable_cloudsql_volumefalseMediumFilebrowser has no Cloud SQL; enabling adds a useless Auth Proxy sidecar.
enable_redisfalseMediumFilebrowser has no Redis; the App_GKE default true is overridden — leaving it on wires an unused dependency.
enable_iapcredentials requiredHighEnabling IAP without iap_oauth_client_id/secret silently exposes the service unauthenticated (blocked by a plan-time guard).
application_versionpin in productionMediumlatest resolves to a pinned v2.32.0 at build time; pin explicitly to control upgrades.

For the foundation behaviour referenced throughout — IAM and Workload Identity, autoscaling, ingress and certificates, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC-SC, backups, and image mirroring — see App_GKE. Filebrowser-specific application configuration shared with the Cloud Run variant is described in Filebrowser_Common.