All checks were successful
continuous-integration/drone/push Build is passing
WARM_CANONICAL=True added to every recipe in cc-ci-plan/used-recipes.md (20 weekly + uptime-kuma external). enrolled_recipes() now returns all 21. Test fixtures (custom-html-*-bad, concurrency, regression) intentionally left unenrolled. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
21 lines
1.3 KiB
Python
21 lines
1.3 KiB
Python
# Per-recipe config for custom-html-tiny (a fast static-web-server). Shorter timeouts than the
|
|
# defaults: it converges + serves in seconds, so the generic install's fail-without-hook case
|
|
# (DG5) is detected quickly instead of waiting the default 300s HTTP timeout.
|
|
DEPLOY_TIMEOUT = 120
|
|
HTTP_TIMEOUT = 90
|
|
|
|
# Rungs this recipe INTENTIONALLY skips, each with a reason. Any essential rung skipped (N/A) and NOT
|
|
# listed here is reported as an *unintentional* skip (a coverage gap to fill or declare). A skip still
|
|
# caps the level either way — the harness never claims a rung it did not verify; this only records
|
|
# that the skip is deliberate. (The level ladder is the four essential rungs install/upgrade/
|
|
# backup_restore/functional; integration + recipe-local are optional and not leveled.)
|
|
# custom-html-tiny is a stateless static-web-server, so it has no backup surface:
|
|
EXPECTED_NA = {
|
|
"backup_restore": "stateless static file server: serves an ephemeral content volume seeded at "
|
|
"deploy, with no persistent/user data to back up or restore (no backupbot.backup label)",
|
|
}
|
|
|
|
# canon §2.B: enroll as a DATA-WARM canonical (all recipes enrolled — operator 2026-06-17).
|
|
# The weekly sweep promotes this recipe's canonical to its latest green RELEASE TAG.
|
|
WARM_CANONICAL = True
|