Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
claude/adoring-hopper-5x74bqclaude/affectionate-feynman-ykrf1hclaude/architecture-audit-design-wxprenclaude/build-status-update-3MXsfclaude/charming-meitner-mllb5rclaude/compare-gate-gluecron-s4mFQclaude/confident-faraday-tikcwbclaude/continue-work-XMTlIclaude/crontech-gluecron-deploy-7MIECclaude/crontech-platform-setup-SeKfwclaude/design-2026claude/ecstatic-ptolemy-jMdigclaude/enhance-github-integration-QNHdGclaude/fix-aa-loop-issue-PonMQclaude/fix-actions-and-processclaude/fix-desktop-errors-XqoW8claude/fix-red-workflowsclaude/fix-website-access-6FKJNclaude/gatetest-integration-hardeningclaude/github-audit-improvements-bDFr9claude/gluecron-launch-status-FoMRlclaude/hopeful-lamport-olfCTclaude/issue-to-pr-and-protectionsclaude/jolly-heisenberg-2sg1Qclaude/launch-preparation-QmTb6claude/new-session-xk1l7claude/plan-platform-architecture-kkN4yclaude/platform-analysis-roadmap-1nUGLclaude/platform-launch-assessment-8dWV8claude/polish-platform-release-AeDrUclaude/resume-previous-work-KzyLwclaude/review-crontech-handoff-qYEVqclaude/review-project-completeness-lHhS2claude/review-readme-docs-ulqPKclaude/serene-edison-rj87weclaude/setup-multi-repo-dev-BCwNQclaude/ship-fixes-and-tests-Jvz1cclaude/site-audit-competitive-pctlwgclaude/site-migration-vercel-XstpKclaude/standalone-product-repos-XHFTDcopilot/feat-smart-empty-states-keyboard-first-enhancementcopilot/feat-smart-morning-digest-review-context-restorecopilot/fix-and-process-workflowscopilot/update-ai-powered-code-reviewfeat/debt-mapfeat/push-policy-codeowners-hardeningfeat/smart-digest-contextfeat/stage-impactfeat/t1-secret-migrationfeat/u-polishfeat/w-self-hostfeat/w2-claude-configfix/agent-journey-orphan-sweepgatetest/auto-fix-1776586424172gatetest/auto-fix-1776586534814gatetest/auto-fix-1776590685143gatetest/auto-fix-1776590808199mainops/redeploy-retriggerstyle/dxt-cta-themeworktree-agent-a3377aad30d55da26worktree-agent-a7ef607b7ee1d6c74
INCIDENT-2026-07-13-deploy-blip.md2.8 KB · 49 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Incident — 2026-07-13 ~12:42 UTC: brief public-site downtime during auto-deploy

**Status:** resolved (self-recovered). No code fix required.
**Duration:** < 1 minute (monitor reported "DOWN for ~0 min").
**Impact:** https://gluecron.com briefly unreachable while the app container was replaced.

## Timeline (UTC)

- 12:42:06 — `gluecron-update.service` (minutely auto-deploy timer) picked up commit
  `41d6ea3` ("fix(backup): dump the REAL production DB (Neon), add proven restore drill"),
  rebuilt the image and **replaced** `gluecron-gluecron-1` via
  `docker compose -f docker-compose.standalone.yml up -d --build`.
- 12:42:12 — deploy log: `deploy complete: 41d6ea3… (app healthy)`. Migrations were
  all no-ops ("already applied, skipping").
- ~12:42 — external monitor caught the container-replacement window and fired a
  self-heal alert.
- 12:46:20 — self-heal session started; site already serving HTTP 200 in ~0.1 s
  (5/5 probes). Container healthy, `restarts=0`, `oom=false`, exit code 0.

## Root cause

Not a crash. `docker compose up --build` replaces the app container in-place
(stop-then-start), so every deploy has a short window where Traefik has no healthy
upstream. The monitor's probe landed inside that window. The deploy itself succeeded.

## Actions taken

- Diagnosed only — no restarts, no rollback, no DB operations. The safest fix was no fix.
- Verified stability: repeated probes returned HTTP 200; container health checks passing.
- Ran `bun run typecheck` on the deployed commit: **45 pre-existing TS errors across
  15 files** (top offenders: `src/routes/oauth.tsx` 9, `src/routes/well-known.ts` 5,
  `src/routes/mcp.ts` 5). These pre-date this session; Bun strips types at runtime so
  they don't affect prod, but they should be burned down before `tsc` can gate deploys.
- Build verification: the production Docker image build at 12:42 completed and passed
  the app health gate (no separate `build` script exists; the image build is the build).

## Follow-ups (not done here)

1. **Zero-downtime deploys** — the minutely auto-deploy replaces the container on every
   commit, so every push causes a blip like this one (and can re-trigger the self-heal
   monitor). Consider start-first replacement (bring up the new container, health-check
   it, then swap Traefik routing) or two replicas behind Traefik.
2. **Monitor grace window** — suppress the alert if a deploy is in flight
   (`gluecron-update.service` active) or require 2 consecutive failed probes.
3. **Type-error burn-down** — 45 errors block using `bun run typecheck` as a deploy gate.
4. **Untracked leftovers**`/root/gluecron/docker-compose.traefik.yml` (unused draft,
   superseded by `docker-compose.override.yml`) and several `.env.bak.*` /
   `docker-compose.standalone.yml.bak.*` files in `/opt/gluecron` should be cleaned up
   or gitignored.