Skip to main content

Ntfy on Google Cloud Run

Ntfy on Google Cloud Run

ntfy is an open-source, Apache 2.0-licensed pub/sub push-notification server written in Go. Applications publish messages over a simple REST/HTTP API and clients receive them instantly over WebSocket or Server-Sent-Events (SSE) streams — no external database required. This module deploys ntfy on Cloud Run v2 on top of the App_CloudRun foundation, which provisions and manages the shared Google Cloud infrastructure.

This guide focuses on the cloud services ntfy uses and how to explore and operate them from the Google Cloud Console and the command line. For the mechanics common to every Cloud Run application — service identity, ingress and load balancing, scaling and concurrency, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC Service Controls, backups, and the deployment lifecycle — refer to the App_CloudRun foundation guide rather than repeating them here.


1. Overview

ntfy runs as a single Go container on Cloud Run v2. The deployment wires together a deliberately small set of Google Cloud services — ntfy has no database, cache, or object-storage dependency of its own:

CapabilityGoogle Cloud serviceNotes
ComputeCloud Run v2Single Go service, 1 vCPU / 512 MiB by default; CPU always allocated for long-lived streams
DatabaseNonedatabase_type = "NONE"; message cache is a local SQLite file, no Cloud SQL provisioned
PersistenceEphemeral disk (default) or NFS (optional)SQLite cache at /var/cache/ntfy/cache.db; enable NFS for durable message history
Object storageNonentfy stores nothing in Cloud Storage
Cache / queueNoneNo Redis; ntfy uses an in-process message bus
SecretsSecret ManagerNo auto-generated secrets; only user-supplied secret_environment_variables
IngressCloud Run URL / Cloud Load BalancingDefault run.app URL; optional external HTTPS load balancer + custom domain

Sensible defaults worth knowing up front:

  • No database is provisioned. database_type = "NONE" — ntfy keeps its message cache in a local SQLite file. The database-related variables exist for completeness but are inert unless you deliberately opt in to an external database.
  • The message cache is ephemeral by default. It lives at /var/cache/ntfy/cache.db. Cloud Run's root filesystem is read-only, so the entrypoint falls back to /tmp/ntfy when the configured directory is not writable. Message history is therefore lost on each restart/redeploy unless you enable NFS (enable_nfs = true) and point the cache directory at the mount.
  • CPU is always allocated (cpu_always_allocated = true). ntfy holds long-lived WebSocket/SSE streams open to push messages to connected subscribers in real time, so CPU must not be throttled between requests. Flipping this to false saves cost on a low-traffic instance but pauses real-time delivery while idle.
  • Single instance by default (min_instance_count = 1, max_instance_count = 1). Because a subscriber's stream is anchored to the instance that holds it and there is no shared message bus, scaling out is not the default. Keep max at 1 unless you place a shared cache/broker behind ntfy.
  • Public ingress is the default (ingress_settings = "all") so publishers and subscribers can reach the service. Enabling IAP requires Google sign-in and blocks unauthenticated publish/subscribe calls.
  • The health endpoint is /v1/health, which returns {"healthy":true} with HTTP 200 as soon as the server binds its port.
  • Access control is a post-deploy step. ntfy ships with open access; configure users and topic ACLs afterwards via its CLI or NTFY_AUTH_* environment variables.

2. Google Cloud Services & How to Explore Them

All commands assume PROJECT and REGION are set. Service and resource names are reported in the deployment Outputs.

A. Cloud Run — the ntfy service

ntfy runs as a Cloud Run v2 service. Each deployment creates an immutable revision; traffic can be split across revisions for safe rollouts. Because CPU is always allocated, an active instance keeps its subscriber streams alive between requests.

  • Console: Cloud Run → select the service for revisions, traffic, logs, and metrics.
  • CLI:
    gcloud run services list --project "$PROJECT" --region "$REGION"
    gcloud run services describe <service-name> --project "$PROJECT" --region "$REGION"
    gcloud run revisions list --service <service-name> --project "$PROJECT" --region "$REGION"

See App_CloudRun for scaling, concurrency, execution environment, and traffic splitting.

B. Persistence — the SQLite message cache

ntfy has no Cloud SQL instance. Its message cache is a local SQLite file at NTFY_CACHE_FILE (/var/cache/ntfy/cache.db), created by the entrypoint on boot. On Cloud Run's read-only root filesystem the entrypoint falls back to /tmp/ntfy when that path is not writable — so with the default configuration the cache is ephemeral and message history does not survive a restart.

For durable history, enable NFS and mount it where the cache lives:

  • Console: Filestore → Instances (when enable_nfs = true).
  • CLI:
    # Confirm the cache path injected into the running revision:
    gcloud run services describe <service-name> --project "$PROJECT" --region "$REGION" \
    --format='value(spec.template.spec.containers[0].env)'

See App_CloudRun for the NFS (Filestore) mount model.

C. Secret Manager

ntfy generates no secrets at deploy time — there is no database password or encryption key to manage. Secret Manager is used only if you supply your own via secret_environment_variables (for example an NTFY_AUTH_* value or an upstream push credential).

  • Console: Security → Secret Manager.
  • CLI:
    gcloud secrets list --project "$PROJECT"
    gcloud secrets versions access latest --secret=<secret-name> --project "$PROJECT"

See App_CloudRun for injection and rotation details.

D. Networking & ingress

The service is reachable at its run.app URL by default, which allows the public access ntfy needs for publish/subscribe traffic. An external HTTPS load balancer with a custom domain, Cloud CDN, and Cloud Armor can be layered on; ingress settings and VPC egress control connectivity. If clients use HTTP/2 streaming, set container_protocol = "h2c".

  • Console: Cloud Run (service URL); Network services → Load balancing.
  • CLI:
    gcloud run services describe <service-name> --region "$REGION" --format='value(status.url)'
    gcloud compute addresses list --project "$PROJECT"

See App_CloudRun.

E. Cloud Logging & Monitoring

Container logs flow to Cloud Logging; Cloud Run metrics flow to Cloud Monitoring, with optional uptime checks and alert policies. ntfy logs its listen address and resolved cache path on startup.

  • Console: Logging → Logs Explorer; Monitoring → Dashboards / Alerting.
  • CLI:
    gcloud run services logs read <service-name> --project "$PROJECT" --region "$REGION" --limit 50

3. Ntfy Application Behaviour

  • No first-deploy database setup. ntfy has no external database and no migration step. The entrypoint prepares the SQLite cache directory and immediately execs ntfy serve. There is no db-init job by default.
  • Ephemeral cache with automatic fallback. The entrypoint creates NTFY_CACHE_FILE's directory; on Cloud Run's read-only rootfs it falls back to /tmp/ntfy and logs a warning. This keeps a baseline (NFS-less) deploy healthy. Enable NFS for durable message history.
  • Real-time delivery needs allocated CPU. Subscribers hold open WebSocket/SSE streams; cpu_always_allocated = true ensures the in-process message bus keeps delivering between inbound requests.
  • Health path. Startup and liveness probes target /v1/health, which returns {"healthy":true} and HTTP 200 as soon as the server binds port 80. Verify:
    SERVICE_URL=$(gcloud run services describe <service-name> \
    --project "$PROJECT" --region "$REGION" --format='value(status.url)')
    curl -s "$SERVICE_URL/v1/health" # -> {"healthy":true}
  • Publish / subscribe smoke test.
    curl -d "hello from ntfy" "$SERVICE_URL/mytopic"     # publish
    curl -s "$SERVICE_URL/mytopic/json" # subscribe (streaming JSON)
  • Access is open until you lock it down. By default any client can publish to and subscribe from any topic. Configure users and per-topic ACLs post-deploy via ntfy's CLI (ntfy user add, ntfy access) or the NTFY_AUTH_* environment variables.
  • Public base URL for attachments / web push. If you use attachments or browser web-push, set NTFY_BASE_URL (via environment_variables) to the service's public URL so generated links resolve correctly.

4. Configuration Variables

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

Group 1 — Project & Identity

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

Group 2 / 3 — Deployment Environment & Application Identity

VariableDefaultDescription
tenant_deployment_iddemoShort suffix that makes resource names unique per environment.
application_namentfyBase name for the service, registry repo, and secrets. Do not change after first deploy.
application_display_nameNtfyHuman-readable name shown in the Console.
application_versionlatestImage version tag; latest maps to a pinned v2.11.0 base. Pin an explicit v2.x.y in production.

Group 4 — Runtime & Scaling

VariableDefaultDescription
deploy_applicationtrueSet false to provision supporting infrastructure only.
container_image_sourcecustomcustom builds the wrapper image via Cloud Build; prebuilt deploys an image directly.
cpu_limit1000mCPU per instance.
memory_limit512MiMemory per instance (gen2 floor is 512Mi).
min_instance_count1Minimum instances.
max_instance_count1Keep at 1 — streams are instance-local with no shared broker.
container_port80ntfy listens on port 80.
container_protocolhttp1Set h2c for end-to-end HTTP/2 streaming.
cpu_always_allocatedtrueRequired for real-time stream delivery; flip to false only for low-traffic cost savings.
enable_cloudsql_volumefalseOff — ntfy has no database.
enable_image_mirroringtrueMirror the ntfy image into Artifact Registry.

Group 5 — Access & Networking

VariableDefaultDescription
ingress_settingsallall is required for public publish/subscribe traffic.
enable_iapfalseRequire Google sign-in. Blocks unauthenticated publish/subscribe.

Group 6 — Environment Variables & Secrets

VariableDefaultDescription
environment_variables{}Extra NTFY_* settings (e.g. NTFY_BASE_URL, NTFY_AUTH_DEFAULT_ACCESS).
secret_environment_variables{}Map of env var → Secret Manager secret name (optional; none required).

Group 11 — Storage & Filesystem

VariableDefaultDescription
enable_nfsfalseEnable to back the SQLite cache with NFS for durable message history.
nfs_mount_path/mnt/nfsNFS mount path; point NTFY_CACHE_FILE at it for persistence.
storage_buckets[]Not required — ntfy uses no object storage.

Group 12 — Database Backend

VariableDefaultDescription
database_typeNONEntfy has no external database; leave NONE.
application_database_name / application_database_userntfyInert unless an external database is deliberately enabled.

Group 13 — Jobs & Scheduled Tasks

VariableDefaultDescription
initialization_jobs[]ntfy needs no init job; leave empty.
cron_jobs[]Optional scheduled Cloud Run jobs.

Group 14 — Observability & Health

VariableDefaultDescription
startup_probeHTTP /v1/health 30s delayStartup probe. ntfy becomes healthy within seconds.
liveness_probeHTTP /v1/health 30s delayLiveness probe.
uptime_check_config{ enabled=false, path="/v1/health" }Optional Cloud Monitoring uptime check.

Group 16 — Redis Cache

VariableDefaultDescription
enable_redisfalseNot required — ntfy has no Redis dependency.

All other inputs follow standard App_CloudRun behaviour.


5. Outputs

Returned on a successful deployment — the quickest way to locate and explore the running resources.

OutputDescription
service_nameCloud Run service name.
service_urlDefault run.app URL of the service.
service_locationRegion the service runs in.
stage_servicesStage-specific service URLs (Cloud Deploy).
load_balancer_ip / load_balancer_urlExternal HTTPS load balancer IP / URL (when enabled).
database_instance_name / database_name / database_userDatabase identifiers — empty for the default NONE engine.
database_password_secret / database_host / database_portDatabase endpoint fields — unused for NONE.
storage_bucketsCreated Cloud Storage buckets (none by default).
network_name / network_exists / regionsVPC network, presence, regions.
container_image / container_registryDeployed image and Artifact Registry repo.
monitoring_enabled / monitoring_notification_channels / uptime_check_namesMonitoring status, channels, uptime checks.
initialization_jobsNames of any setup jobs (none by default).
deployment_id / tenant_id / resource_prefixNaming identifiers.
project_id / project_numberProject identifiers.
cicd_enabled / github_repository_url / github_repository_owner / github_repository_name / cicd_configurationCI/CD status and details.
artifact_registry_repository / cloudbuild_trigger_name / cloudbuild_trigger_idRegistry and build trigger.
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_CloudRun foundation engine, which validates values and combinations at plan time — IAP with no authorized identities, a gen1 runtime with NFS/GCS mounts, an out-of-range container_port/timeout_seconds, a memory value below the gen2 floor. 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
enable_nfs (for durable history)true when history mattersHighWith the default ephemeral cache, all message history is lost on every restart/redeploy — acceptable for a pure relay, surprising if you expected persistence.
max_instance_count1HighScaling beyond 1 splits subscribers across instances with no shared bus, so a message published to one instance is not delivered to subscribers pinned to another.
cpu_always_allocatedtrueHighSetting false lets Cloud Run throttle CPU between requests, pausing real-time WebSocket/SSE delivery while the instance is idle.
ingress_settingsallHighinternal blocks external publishers and subscribers from reaching the service.
enable_iaponly when auth-gatedHighIAP requires Google sign-in for every request, blocking unauthenticated publish/subscribe — usually not what a notification endpoint wants.
NTFY_BASE_URLActual service URLMediumUnset, attachment and web-push links resolve to the wrong host.
ntfy access controlConfigure post-deployMediumLeft default, any client can publish to and subscribe from any topic on a public URL.
container_protocolhttp1 (or h2c)MediumMismatch with clients that require HTTP/2 streaming degrades or breaks long-lived streams.
memory_limit512MiLowThe gen2 execution environment rejects values below 512Mi at apply time.
application_versionPin v2.x.y in prodLowlatest maps to a pinned base (v2.11.0); pin explicitly to control upgrades.

For the foundation behaviour referenced throughout — service identity, scaling and concurrency, ingress and load balancing, CI/CD, Cloud Armor, IAP, Binary Authorization, VPC-SC, backups, and image mirroring — see App_CloudRun. ntfy-specific application configuration shared with the GKE variant is described in Ntfy_Common.