Skip to main content

EvolutionAPI on Google Cloud Run

EvolutionAPI on Google Cloud Run

Evolution API is an open-source Node.js WhatsApp Business API gateway (built on the Baileys library) that provisions WhatsApp instances, sends and receives messages, and exposes a REST API plus a manager UI for wiring WhatsApp into other systems. This module deploys Evolution API 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 Evolution API 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

Evolution API runs as a Node.js container on Cloud Run v2. The deployment wires together a focused set of Google Cloud services:

CapabilityGoogle Cloud serviceNotes
ComputeCloud Run v2Node.js service, 2 vCPU / 4 GiB by default; pinned to a single always-warm instance
DatabaseCloud SQL for PostgreSQL 15Required — Evolution API uses Prisma against PostgreSQL only
CacheRedisEnabled by default (CACHE_REDIS_URI); caches instance/message state
Object storageCloud StorageA dedicated data bucket provisioned automatically
SecretsSecret ManagerAuto-generated AUTHENTICATION_API_KEY; database password
IngressCloud Run URL / Cloud Load BalancingDefault run.app URL (public); optional external HTTPS LB + custom domain

Sensible defaults worth knowing up front:

  • PostgreSQL 15 is mandatory. The database engine is fixed by the shared application layer; Evolution API uses Prisma and does not support other engines.
  • The service is pinned to a single instance (min_instance_count = 1, max_instance_count = 1). Evolution API holds live WhatsApp (Baileys) socket sessions in memory, per-instance; those sessions are not shared across replicas, so scaling out fragments live connections and one instance must stay warm. Do not raise max_instance_count.
  • AUTHENTICATION_API_KEY is generated automatically and stored in Secret Manager. It is Evolution API's global admin key and must never be rotated after first boot — rotating it makes already-provisioned WhatsApp instances unreachable and returns 401 to every client still holding the old key.
  • Redis is enabled by default (enable_redis = true). Leave redis_host empty to use the NFS server VM's IP as the Redis endpoint (requires enable_nfs = true), or point it at an explicit managed instance.
  • Public ingress is the default (ingress_settings = "all") so external systems can reach webhook endpoints and the manager UI. Enabling IAP blocks those external calls.
  • Memory defaults to 4 GiB — Evolution API needs at least 2 GiB for reliable operation.
  • SERVER_URL is defaulted to the actual service URL at runtime by the container entrypoint, so QR-code and webhook callback URLs reflect the real Cloud Run address.

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 Evolution API service

Evolution API runs as a Cloud Run v2 service pinned to a single instance. Each deployment creates an immutable revision; traffic can be split across revisions for safe rollouts.

  • Console: Cloud Run → select the service for revisions, traffic, logs, and metrics.
  • CLI:
    gcloud run services list --project "$PROJECT" --region "$REGION" \
    --filter="metadata.name~evolutionapi"
    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. Cloud SQL for PostgreSQL 15

Evolution API stores all application data (WhatsApp instances, contacts, chats, message history) in a managed Cloud SQL for PostgreSQL 15 instance. The service connects privately through the Cloud SQL Auth Proxy over a Unix socket; no public IP is exposed. On first deploy an initialization Job creates the application database and user; Prisma migrations then create the schema on container boot.

  • Console: SQL → select the instance for connections, backups, flags, metrics.
  • CLI:
    gcloud sql instances list --project "$PROJECT"
    gcloud sql instances describe <instance-name> --project "$PROJECT"
    gcloud sql connect <instance-name> --user=evolution --database=evolution --project "$PROJECT"

The instance name, database, user, and password secret are in the Outputs. See App_CloudRun for the connection model, backups, and password rotation.

C. Cloud Storage

A dedicated Cloud Storage data bucket is provisioned automatically for Evolution API file storage. Additional buckets can be declared via storage_buckets.

  • Console: Cloud Storage → Buckets.
  • CLI:
    gcloud storage buckets list --project "$PROJECT"
    gcloud storage ls gs://<data-bucket>/ # bucket name is in the Outputs

See App_CloudRun for GCS Fuse and CMEK options.

D. Redis (cache)

Redis is enabled by default (enable_redis = true). Evolution API uses it for instance/message caching (CACHE_REDIS_URI, Redis DB index 6). When redis_host is left empty and enable_nfs = true, the NFS server VM's IP is used as the Redis endpoint; the container entrypoint assembles the URI at runtime.

  • Console: Memorystore → Redis (if using a managed instance).
  • CLI:
    redis-cli -h <redis-host> ping
    redis-cli -h <redis-host> info keyspace
    # Confirm the cache URI is set in the running revision:
    gcloud run services describe <service-name> --region "$REGION" \
    --format='value(spec.template.spec.containers[0].env)'

E. Secret Manager

One cryptographic secret is generated automatically and stored in Secret Manager: AUTHENTICATION_API_KEY — Evolution API's global admin API key, injected as a secret env var. The database password is managed separately by the foundation.

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

See App_CloudRun for injection and rotation details.

F. Networking & ingress

The service is reachable at its run.app URL by default, which allows the public access required for WhatsApp webhook callbacks and the manager UI. 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.

  • 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.

G. Cloud Logging & Monitoring

Container logs flow to Cloud Logging; Cloud Run and Cloud SQL metrics flow to Cloud Monitoring, with optional uptime checks and alert policies. The entrypoint emits [cloud-entrypoint] markers that confirm the resolved DB/Redis/URL config on boot.

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

3. EvolutionAPI Application Behaviour

  • First-deploy database setup. An initialization Job runs db-init.sh using postgres:15-alpine. It connects through the Cloud SQL Auth Proxy and idempotently creates the evolution database and role, grants privileges, and makes the app user the owner of the public schema. The job is safe to re-run.
  • Prisma migrations on start. Evolution API runs prisma migrate deploy on every container boot (via the wrapped deploy_database.sh), so upgrading the application version applies schema changes without a separate migration step. The entrypoint waits for the Cloud SQL socket before this runs and executes the migrate script as a subprocess so a transient failure cannot prevent the server from starting.
  • AUTHENTICATION_API_KEY is immutable after first boot. The global admin key is generated once and written to Secret Manager. Rotating it makes all already-provisioned WhatsApp instances unreachable and returns 401 to every client still holding the old key. Only rotate during a planned migration.
  • Single-instance by design. WhatsApp (Baileys) socket sessions live in the instance's memory and are not shared across replicas. min_instance_count = 1 keeps one warm; max_instance_count = 1 prevents fragmenting live connections. Do not scale out.
  • Webhook / QR callback URL. The entrypoint defaults SERVER_URL to the injected CLOUDRUN_SERVICE_URL, so QR-code and webhook callback URLs use the real service address. Verify the running service URL:
    gcloud run services describe <service-name> \
    --region "$REGION" --project "$PROJECT" --format='value(status.url)'
  • First-run setup. After deploy, retrieve AUTHENTICATION_API_KEY from Secret Manager and use it (as the apikey header) to reach the manager UI at /manager, create a WhatsApp instance (POST /instance/create), then scan the returned QR code from WhatsApp on your phone to connect the number.
  • Health path. Startup and liveness probes target the root / — an unauthenticated status endpoint that responds once the server is up. Allow ~7 minutes on first boot (the startup probe gives a 60-second initial delay plus a 30-retry window while Prisma migrates).
  • Inspect job execution:
    gcloud run jobs list --project "$PROJECT" --region "$REGION"
    gcloud run jobs executions list --job <job-name> --project "$PROJECT" --region "$REGION"

4. Configuration Variables

Variables are grouped exactly as they appear on the deployment platform. Only settings specific to or notable for Evolution API 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.

All other inputs follow standard App_CloudRun behaviour.

Group 3 — Application Identity

VariableDefaultDescription
application_nameevolutionapiBase name for resources. Do not change after first deploy.
display_nameEvolution APIHuman-readable name shown in the Console.
application_versionv2.1.1Evolution API image tag. latest maps to a pinned v2.1.1 in the build arg.

All other inputs follow standard App_CloudRun behaviour.

Group 4 — Runtime & Scaling

VariableDefaultDescription
deploy_applicationtrueSet false to provision infrastructure only.
cpu_limit2000mCPU per instance; 2 vCPU recommended.
memory_limit4GiMemory per instance; minimum 2 GiB for reliable operation.
min_instance_count1Keeps one warm instance — WhatsApp sockets are held in memory.
max_instance_count1Pinned to 1. Do not raise — sessions are not shared across replicas.
container_port8080Evolution API listens on port 8080 (SERVER_PORT).
enable_cloudsql_volumetrueCloud SQL Auth Proxy sidecar for socket connections.
enable_image_mirroringtrueMirror the evoapicloud/evolution-api image into Artifact Registry.

All other inputs follow standard App_CloudRun behaviour.

Group 5 — Access & Ingress Control

VariableDefaultDescription
ingress_settingsallall is required for public webhook callbacks and the manager UI.
enable_iapfalseRequire Google sign-in. Blocks external WhatsApp webhook callbacks.

All other inputs follow standard App_CloudRun behaviour.

Group 6 — Environment Variables & Secrets

VariableDefaultDescription
environment_variables{}Extra non-secret settings. Core SERVER_*, DATABASE_*, CACHE_REDIS_*, and AUTHENTICATION_* values are set automatically — do not set AUTHENTICATION_API_KEY or DATABASE_CONNECTION_URI here.
secret_environment_variables{}Map of env var → Secret Manager secret name.

All other inputs follow standard App_CloudRun behaviour.

Group 11 — Storage & Filesystem

VariableDefaultDescription
enable_nfstrueProvisions a Filestore NFS instance; also co-locates the Redis endpoint on the NFS server VM when redis_host is left empty (see Group 21).
gcs_volumes[]GCS Fuse volume mounts (requires gen2).

All other inputs follow standard App_CloudRun behaviour.

Group 12 — Database Backend

VariableDefaultDescription
db_nameevolutionPostgreSQL database name. Immutable after first deploy.
db_userevolutionApplication database user. Password auto-generated in Secret Manager.

All other inputs follow standard App_CloudRun behaviour.

Group 14 — Observability & Health

VariableDefaultDescription
startup_probeHTTP / 60s delay, 30 retriesSlow first boot (Prisma migrations); allow ~7 minutes.
liveness_probeHTTP / 60s delayLiveness probe on the root status endpoint.

All other inputs follow standard App_CloudRun behaviour.

Group 21 — Redis Cache

VariableDefaultDescription
enable_redistrueEnables Evolution API's Redis cache (CACHE_REDIS_URI).
redis_host""Redis endpoint. Leave empty to use the NFS server IP (requires enable_nfs = true).
redis_port6379Redis port.
redis_auth""Optional Redis auth password (sensitive).

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 details (Cloud Deploy).
load_balancer_ip / load_balancer_urlExternal HTTPS load balancer IP / URL (when enabled).
database_instance_nameCloud SQL instance name.
database_name / database_userApplication database name / user.
database_password_secretSecret Manager secret holding the DB password.
database_host / database_portDB endpoint (sensitive) / port.
storage_bucketsCreated Cloud Storage buckets.
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 the setup jobs.
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 — an out-of-range redis_port/backup_retention_days, IAP with no authorized identities, a gen1 runtime with NFS/GCS mounts, memory 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
AUTHENTICATION_API_KEY (auto-generated)Never rotate after first bootCriticalRotating it makes every already-provisioned WhatsApp instance unreachable and returns 401 to all clients holding the old key.
db_name / db_userSet onceCriticalImmutable after first deploy; renaming recreates the DB/user and destroys all message history.
max_instance_count1CriticalScaling out fragments in-memory WhatsApp socket sessions across instances, breaking live connections and duplicating webhook deliveries.
enable_backup_importfalse unless restoringCriticalEnabling without a valid backup_uri fails the import job.
enable_redistrueHighDisabling drops Evolution API's instance/message cache; the app is configured to expect it (CACHE_REDIS_ENABLED = true).
redis_host"" (NFS) or explicitHighWhen Redis is on but NFS is off and no host is set, the cache URI is blank and caching is silently disabled.
memory_limit4Gi (min 2Gi)HighBelow 2 GiB Evolution API is prone to OOM kills under message load.
ingress_settingsallHighSetting to internal blocks all external WhatsApp webhook callbacks.
enable_iaponly when webhooks not neededHighIAP blocks all unauthenticated requests, including external webhook callbacks.
min_instance_count1MediumScale-to-zero drops the warm WhatsApp socket sessions; a cold start must re-establish every connection.
application_versionPin (e.g. v2.1.1)Mediumlatest maps to a pinned tag, but pinning explicitly avoids surprise upgrades that run new Prisma migrations.
startup_probe timingDefault (60s + 30 retries)MediumToo tight a window fails the probe before first-boot Prisma migrations finish.

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. Evolution-API-specific application configuration shared with the GKE variant is described in EvolutionAPI_Common.