fix(ci): migrate 3 monitoring crons to self-hosted runners (DAK-7665) - #257
Merged
Conversation
Move Hetzner Health Check, Wedged Runner Auto-Heal, and Playground Uptime Check off ubuntu-latest (GitHub-hosted) onto self-hosted Hetzner runners so monitoring survives GitHub Actions billing outages (DAK-7664). - hetzner-health-check.yml: both jobs → [self-hosted, linux, arm64] (monitors prod server 178.104.45.161, no self-reference risk) - playground-uptime-check.yml → [self-hosted, linux, arm64] (HTTP probe only, no self-reference risk) - runner-wedged-watchdog.yml → [self-hosted, linux, x64] (runs on x64 to monitor ARM cross-coverage; x64-watches-ARM is the common failure direction; updated comment documents partial trade-off) Partial self-reference accepted per DAK-7665: coverage on self-hosted beats zero coverage during a GitHub billing lock. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… (DAK-7665) The 'Validate Docker Configs' CI job was on ubuntu-latest solely because hadolint-action needs Docker auth to pull ghcr.io/hadolint/hadolint. This caused CI to fail entirely during the 2026-08-01 GitHub billing lock (DAK-7664). Fix: run on [self-hosted, linux, arm64] + explicit docker/login-action@v4 step to authenticate Docker on the runner to GHCR using GITHUB_TOKEN (packages: read). Docker and docker compose are both available on the ARM runner (Docker 29.1.3, Compose v5.1.1 verified 2026-08-01). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Migrates the 3 GitHub-hosted (ubuntu-latest) monitoring cron workflows to self-hosted Hetzner runners so infra monitoring survives GitHub Actions billing outages (DAK-7664 incident, 2026-08-01 ~17:31Z).
Workflows changed:
[self-hosted, linux, arm64](both jobs)178.104.45.161via HTTP + Hetzner API. No self-reference risk.[self-hosted, linux, arm64]playground.dakera.ai. No self-reference risk.[self-hosted, linux, x64]Verification:
gh,python3,jq,curl,sshall confirmed installed on both self-hosted runners before migration.Test plan
workflow_dispatcheach workflow after merge, confirm they run on self-hosted runners (not ubuntu-latest)hetzner-arm-deployor equivalent)🤖 Generated with Claude Code