Skip to content
Skillv1.0.0

flyio-prod-checklist

Execute Fly.io production deployment checklist with health checks, auto-scaling, monitoring, and rollback procedures. Trigger: "fly.io production", "fly.io go-live", "fly.io prod checklist".

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (skills/.curated/flyio-prod-checklist/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill flyio-prod-checklist. Copyright stays with the author (MIT).

Fly.io Production Checklist

Overview

Fly.io runs applications on edge infrastructure across 30+ regions with Machines, Volumes, and managed Postgres. A production deployment requires multi-region redundancy, proper secret management, health checks, and rollback procedures. Misconfigured auto-scaling means cold starts; missing volume backups mean data loss. This checklist ensures your Fly.io app is production-hardened.

Prerequisites

  • A launch owner, approver, on-call contact, recovery owner, and completed staging evidence using synthetic traffic.
  • Documented data locality, backup/restore, access, retention, and escalation requirements.

Instructions

  1. Complete every applicable checklist item with evidence or an explicit owner decision.
  2. Confirm secrets, identities, health checks, backup/restore, monitoring, region policy, and rollback before launch.
  3. Run a canary, observe aggregate health/cost/error signals, and stop promotion when any defined threshold is breached.
  4. Record approval, exceptions, and recovery verification in the release receipt.

Output

Produce a go-live receipt with controls completed, evidence references, canary metrics, regions, approver, rollback owner, exceptions, and follow-up date. Do not include secrets or user data.

Examples

Deploy a synthetic workload to one staging region, revoke a test deployment token, and simulate a health failure. Promote only after the rollback succeeds and the designated approver records the canary evidence.

Authentication & Secrets

  • FLY_API_TOKEN stored in CI secrets (never in fly.toml or source)
  • All app secrets set via fly secrets (not [env] block)
  • Deploy tokens scoped per app (not org-wide personal tokens)
  • Key rotation scheduled (quarterly, or after team changes)
  • No hardcoded secrets in Dockerfile or codebase

API Integration

  • Production base URL: app deployed to https://<app>.fly.dev
  • force_https = true in fly.toml http_service
  • Custom domain with TLS certificate active and auto-renewing
  • min_machines_running = 1 to avoid cold starts
  • Machines deployed in 2+ regions for redundancy
  • Concurrency limits tuned (soft_limit/hard_limit per workload)
  • Volumes backed up if using persistent storage

Error Handling & Resilience

  • Health check endpoint configured with appropriate grace period
  • Graceful shutdown handles SIGTERM within 10s window
  • Auto-stop/auto-start configured for cost optimization
  • Postgres standby replica provisioned for database apps
  • Rollback procedure tested: fly releases rollback <N>
  • Dockerfile builds and runs identically local vs deployed

Monitoring & Alerting

  • fly logs streaming configured for centralized logging
  • Machine health monitored via fly machine status
  • Platform status checked: https://status.flyio.net
  • Alert on health check failures across any region
  • VM resource utilization tracked (fly scale show)

Validation Script

async function checkFlyioReadiness(): Promise<void> {
  const checks: { name: string; pass: boolean; detail: string }[] = [];
  // Fly.io API connectivity
  try {
    const res = await fetch('https://api.machines.dev/v1/apps', {
      headers: { Authorization: `Bearer ${process.env.FLY_API_TOKEN}` },
    });
    checks.push({ name: 'Fly API', pass: res.ok, detail: res.ok ? 'Connected' : `HTTP ${res.status}` });
  } catch (e: any) { checks.push({ name: 'Fly API', pass: false, detail: e.message }); }
  // Token present
  checks.push({ name: 'API Token Set', pass: !!process.env.FLY_API_TOKEN, detail: process.env.FLY_API_TOKEN ? 'Present' : 'MISSING' });
  // Platform status
  try {
    const res = await fetch('https://status.flyio.net/api/v2/status.json');
    const data = await res.json();
    const status = data?.status?.indicator || 'unknown';
    checks.push({ name: 'Platform Status', pass: status === 'none', detail: status === 'none' ? 'Operational' : status });
  } catch (e: any) { checks.push({ name: 'Platform Status', pass: false, detail: e.message }); }
  for (const c of checks) console.log(`[${c.pass ? 'PASS' : 'FAIL'}] ${c.name}: ${c.detail}`);
}
checkFlyioReadiness();

Error Handling

Check Risk if Skipped Priority
Multi-region deployment Single region outage = full downtime P1
Volume backups Data loss on machine replacement P1
Health check config Dead machines receive traffic P2
SIGTERM handling Dropped requests during deploys P2
Rollback procedure Stuck on broken release P3

Resources

Next Steps

See flyio-security-basics for network policies and secret management.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-flyio-prod-checklist/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-flyio-prod-checklist.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-flyio-prod-checklist",
  "kind": "skill",
  "name": "flyio-prod-checklist",
  "description": "Execute Fly.io production deployment checklist with health checks, auto-scaling, monitoring, and rollback procedures. Trigger: \"fly.io production\", \"fly.io go-live\", \"fly.io prod checklist\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "edge-compute",
      "flyio",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Execute Fly.io production deployment checklist with health checks, auto-scaling, monitoring, and rollback procedures. Trigger: \"fly.io production\", \"fly.io go-live\", \"fly.io prod checklist\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/flyio-prod-checklist/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/flyio-prod-checklist/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/flyio-prod-checklist/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Bash(fly:*),",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Fly.io Production Checklist\n\n## Overview\n\nFly.io runs applications on edge infrastructure across 30+ regions with Machines, Volumes, and managed Postgres. A production deployment requires multi-region redundancy, proper secret management, health checks, and rollback procedures. Misconfigured auto-scaling means cold starts; missing volume backups mean data loss. This checklist ensures your Fly.io app is production-hardened.\n\n## Prerequisites\n\n- A launch owner, approver, on-call contact, recovery owner, and completed staging evidence using synthetic traffic.\n- Documented data locality, backup/",
  "cost": {
    "context_tokens": 1222
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-flyio-prod-checklist/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.