Skip to main content

Certification track: Associate Cloud Engineer (ACE)

Cyclos on Google Cloud Run

Cyclos on Google Cloud Run

Cyclos is a feature-rich banking and payment platform used by microfinance institutions, credit unions, and complementary currency networks. This module deploys Cyclos 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 Cyclos 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

Cyclos runs as a Java/Tomcat container on Cloud Run v2. The deployment wires together a focused set of Google Cloud services:

CapabilityGoogle Cloud serviceNotes
ComputeCloud Run v2Java/Tomcat service, 1 vCPU / 2 GiB by default (raise for production), request-based autoscaling
DatabaseCloud SQL for PostgreSQL 15Required — Cyclos does not support MySQL or SQL Server
Object storageCloud StorageA dedicated file-storage bucket (<prefix>-cyclos-storage) for uploaded files and media
SecretsSecret ManagerAuto-generated database password; ROOT_PASSWORD for superuser extension setup
IngressCloud Run URL / Cloud Load BalancingDefault run.app URL, optional external HTTPS load balancer + custom domain

Sensible defaults worth knowing up front:

  • PostgreSQL 15 is mandatory. Cyclos requires six specific PostgreSQL extensions (pg_trgm, uuid-ossp, cube, earthdistance, postgis, unaccent). MySQL and SQL Server are not supported.
  • PostgreSQL extensions are installed automatically by the db-init job before Cyclos starts — you do not need to enable them manually.
  • GCS file storage is mandatory. Cyclos uses Google Cloud Storage as its file content manager (cyclos.storedFileContentManager = gcs). The bucket name is injected automatically.
  • enable_cloudsql_volume defaults to false. Cyclos connects to Cloud SQL via direct TCP to the private IP, not via the Auth Proxy Unix socket.
  • max_instance_count defaults to 1. Cyclos Community Edition requires Hazelcast configuration to scale horizontally. Increase only after configuring clustering.
  • TCP startup probe. The startup probe uses TCP on port 8080 — not HTTP — because Cyclos holds the database lock during its Spring/schema initialisation phase. An HTTP probe on /api would not pass until Cyclos fully initialises, which during a rolling update causes a deadlock with the previous instance. TCP succeeds as soon as Tomcat is listening, allowing traffic to shift and the old instance to release the lock.
  • Schema management on startup. Cyclos creates and migrates its own PostgreSQL schema on first boot. First-deploy startup takes 2–5 minutes.
  • Health probes target /api. The liveness probe targets /api, which returns HTTP 200 only once Cyclos is fully initialised.

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 Cyclos service

Cyclos runs as a Cloud Run v2 service that autoscales by request load between the minimum and maximum instance counts. 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"
    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

Cyclos stores all application data (accounts, transactions, members) in a managed Cloud SQL for PostgreSQL 15 instance. The service connects via direct TCP to the Cloud SQL private IP. On first deploy an initialization Job (run as a Cloud Run Job) creates the application database, user, and all six required extensions.

  • 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=cyclos --database=cyclos --project "$PROJECT"
    # Inside psql — confirm required extensions are installed:
    # \dx

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 — file content manager

Cyclos stores all uploaded files, profile photos, and transaction attachments in a dedicated Cloud Storage bucket provisioned as part of the deployment. The bucket name is injected automatically as cyclos.storedFileContentManager.bucketName. The service account is granted access automatically.

  • Console: Cloud Storage → Buckets → look for <prefix>-cyclos-storage.
  • CLI:
    gcloud storage buckets list --project "$PROJECT" --filter="name:cyclos-storage"
    gcloud storage ls gs://<cyclos-storage-bucket>/

See App_CloudRun for GCS Fuse mounts and CMEK.

D. Secret Manager

The Cyclos database password and the PostgreSQL superuser (ROOT_PASSWORD) are stored in Secret Manager and injected into the service at runtime. The db-init job uses ROOT_PASSWORD to install extensions; Cyclos uses DB_PASSWORD to connect at runtime.

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

E. Networking & ingress

The service is reachable at its run.app URL by default. 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.

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

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

3. Cyclos Application Behaviour

  • First-deploy database setup. The db-init job runs as the PostgreSQL superuser and idempotently: creates the cyclos database user, creates the application database, installs all six required extensions (pg_trgm, uuid-ossp, cube, earthdistance, postgis, unaccent), and grants the necessary privileges. It is safe to re-run.

    Inspect the job and its executions:

    gcloud run jobs list --project "$PROJECT" --region "$REGION"
    gcloud run jobs executions list --job <job-name> --project "$PROJECT" --region "$REGION"
  • Schema management on startup. Cyclos creates and evolves its own PostgreSQL schema on startup (cyclos.db.managed = true). First-deploy startup takes 2–5 minutes.

  • TCP startup probe. During a rolling update, the new instance needs to acquire the Cyclos database initialisation lock before the old instance releases it. An HTTP probe on /api would never pass until Cyclos fully initialises, causing a deadlock. The TCP startup probe succeeds as soon as Tomcat is listening (~32 seconds), allows the traffic shift to the new revision, which sends SIGTERM to the old instance and releases the lock. The liveness probe then catches any uninitialised Spring context and triggers a clean restart.

  • JVM heap sizing. Set the CYCLOS_OPTIONS environment variable to cap JVM heap — for example { CYCLOS_OPTIONS = "-Xmx2g" } for a 4 GiB memory limit. Without this, the JVM can consume all available container memory and be OOMKilled.

  • Single-instance default. Cyclos Community Edition defaults to one instance (max_instance_count = 1). Increasing without Hazelcast clustering configuration causes non-atomic transaction processing and potential data corruption.

  • Email delivery. Cyclos sends transactional email via SMTP. The module pre-populates SMTP placeholder values in environment_variables — update them before going live:

    environment_variables = {
    SMTP_HOST = "smtp.sendgrid.net"
    SMTP_PORT = "587"
    SMTP_USER = "apikey"
    SMTP_SSL = "true"
    EMAIL_FROM = "noreply@yourbank.example.com"
    }

    Use secret_environment_variables for SMTP_PASSWORD.

  • Direct TCP database connection. DB_HOST is set to the Cloud SQL private IP address (not a socket path). Ensure Private Service Access is configured on the VPC so the Cloud Run service can reach the Cloud SQL instance.


4. Configuration Variables

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

VariableDefaultDescription
tenant_deployment_iddemoShort suffix that makes resource names unique per environment.
support_users[]Emails granted project access and monitoring alerts.
resource_labels{}Labels applied to all resources.

Group 3 — Application Identity

VariableDefaultDescription
application_namecyclosBase name for resources. Do not change after first deploy.
display_nameCyclos Community EditionFriendly name shown in the Console and monitoring dashboards.
descriptionCyclos Banking System on Cloud RunService description.
application_version4.16.17Cyclos image version tag. Increment to trigger a new revision.

Group 4 — Runtime & Scaling

VariableDefaultDescription
deploy_applicationtrueSet false to provision infrastructure only.
cpu_limit1000mCPU per instance. Raise to 2000m for production.
memory_limit2GiMemory per instance. Raise to 4Gi for production.
min_instance_count1Minimum instances. Keep ≥ 1 to avoid slow JVM cold starts.
max_instance_count1Maximum instances. Keep 1 unless Hazelcast clustering is configured.
container_port8080Cyclos/Tomcat listens on port 8080.
execution_environmentgen2Cloud Run execution generation. Gen2 required for VPC egress to Cloud SQL private IP.
enable_cloudsql_volumefalseCyclos uses TCP to Cloud SQL private IP by default; enable only if using Auth Proxy.
traffic_split[]Canary/blue-green traffic allocation across revisions.
max_revisions_to_retain7How many old revisions to keep.

Group 5 — Access & Networking

VariableDefaultDescription
ingress_settingsallWhich networks may reach the service.
vpc_egress_settingPRIVATE_RANGES_ONLYHow outbound traffic routes through the VPC connector.
enable_iapfalseRequire Google sign-in via Identity-Aware Proxy.
iap_authorized_users / iap_authorized_groups[]Who may access through IAP.

Group 6 — Environment Variables & Secrets

VariableDefaultDescription
environment_variablesSMTP placeholder mapPre-populated with SMTP defaults — configure before going live. Core Cyclos vars are injected automatically.
secret_environment_variables{}Map of env var → Secret Manager secret name. Use for SMTP_PASSWORD.
secret_propagation_delay30Seconds to wait after secret creation.
secret_rotation_period2592000sSecret Manager rotation notification frequency.

Group 7 — Backup & Restore

VariableDefaultDescription
backup_schedule0 2 * * *Automated backup cron (UTC).
backup_retention_days7Retention; raise for production/compliance.
enable_backup_import / backup_source / backup_uri / backup_formatrestore optionsRestore from a backup on deploy. Set false after a successful import.

Group 8 — CI/CD & Binary Authorization

Standard App_CloudRun Cloud Build / Cloud Deploy integration — see App_CloudRun. Key inputs: enable_cicd_trigger, github_repository_url, github_token, enable_cloud_deploy, enable_binary_authorization.

Group 9 — Custom SQL Scripts

enable_custom_sql_scripts, custom_sql_scripts_bucket, custom_sql_scripts_path, custom_sql_scripts_use_root — run SQL from a GCS bucket after provisioning. See App_CloudRun.

Group 10 — Load Balancer, CDN & Image Lifecycle

VariableDefaultDescription
enable_cloud_armorfalseProvision Global HTTPS LB + Cloud Armor WAF.
admin_ip_ranges[]CIDRs exempted from WAF rules.
application_domains[]Custom hostnames for the HTTPS LB.
enable_cdnfalseEnable Cloud CDN on the LB backend.
max_images_to_retain / delete_untagged_images / image_retention_days(set)Artifact Registry cleanup policy.

Group 11 — Storage & Filesystem

VariableDefaultDescription
create_cloud_storagetrueProvision the additional data bucket.
storage_buckets[{ name_suffix = "data" }]Additional GCS buckets (the primary cyclos-storage bucket is provisioned automatically).
enable_nfsfalseNFS is not used by the Cyclos container (GCS is the file store).
gcs_volumes[]GCS Fuse mounts (requires gen2).
manage_storage_kms_iam / enable_artifact_registry_cmekfalseCMEK options.

Group 12 — Database Backend

VariableDefaultDescription
db_namecyclosPostgreSQL database name. Immutable after first deploy.
db_usercyclosApplication user. Immutable after first deploy.
database_password_length32Generated password length (16–64).
enable_auto_password_rotation / rotation_propagation_delay_secoffDB password rotation.

Group 13 — Jobs & Scheduled Tasks

VariableDefaultDescription
initialization_jobs[]Leave empty to use the built-in db-init job (creates extensions, user, and database).
cron_jobs[]Recurring Cloud Run Jobs triggered by Cloud Scheduler.

Group 14 — Observability & Health

VariableDefaultDescription
startup_probeTCP, port 8080, 60s delay, 20s period, 15 failuresTCP probe avoids the rolling-update database lock deadlock.
liveness_probeHTTP /api, 120s delay, 30s period, 3 failuresHTTP probe catches uninitialised Spring context after startup.
uptime_check_config{ enabled = false, path = "/" }Cloud Monitoring uptime check; disabled by default.
alert_policies[]Metric alert policies.

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.

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_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 / 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).

SettingSensible valueRiskConsequence if wrong
database_typePOSTGRES_15 (hardcoded via Cyclos_Common)CriticalCyclos requires PostgreSQL with six extensions. MySQL or NONE breaks startup entirely.
db_name / db_userset once (cyclos / cyclos)CriticalImmutable after first deploy; renaming recreates the DB/user and orphans all financial data.
max_instance_count1 (default)CriticalMore than 1 without Hazelcast clustering causes non-atomic transactions and potential data corruption.
application_namecyclos (do not change)CriticalEmbedded in Cloud Run service name, Artifact Registry repo, Secret Manager secrets, and GCS bucket name. Changing orphans all resources.
application_versionpinned tag (e.g. 4.16.17)CriticalCyclos schema migrations are one-way; deploying a newer version without a tested migration path corrupts the schema.
cyclos.storedFileContentManager env vargcs (hardcoded)CriticalOverriding to local writes files to ephemeral container storage; all uploads are lost on restart.
memory_limit≥ 2Gi (4Gi recommended)CriticalJVM throws OutOfMemoryError; container is OOMKilled (exit code 137).
CYCLOS_OPTIONS env var-Xmx2g for 4 GiB limitCriticalNo JVM heap cap: Cyclos consumes all container memory; OOMKilled under load.
startup_probe.typeTCP (default)HighHTTP probe on /api during a rolling update causes a database lock deadlock; the new revision never becomes healthy.
startup_probe.path (liveness)/apiCriticalWrong path: probe never sees HTTP 200; Cloud Run kills the revision.
enable_cloudsql_volumefalse (default)HighIf Private Service Access is not configured, direct TCP connection to Cloud SQL private IP fails; db-init and app startup both fail.
min_instance_count1High0 (scale-to-zero) adds 45–120 s JVM cold starts; banking transactions time out.
execution_environmentgen2HighGen1 can have routing issues with Cloud SQL private IP via VPC. Always use gen2 for Cyclos.
enable_backup_importfalse after restoreHighLeaving true re-runs the restore on every apply, overwriting live financial data.
SMTP_HOST / EMAIL_FROMreal server / real addressHighPlaceholder defaults deliver no email; password resets and transaction notifications are silently dropped.
enable_iap / enable_cloud_armorenable for admin-facingMediumThe Cyclos admin interface is otherwise publicly reachable.
backup_retention_days7 (raise for prod)MediumToo short for compliance retention of financial records.

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