6.2 KiB
6.2 KiB
Changelog
2026-06-26 — crafty-controller: Traefik https backend + scoped skip-verify (fixes 502)
- crafty-controller: the healthcheck fix un-withheld the Traefik route, exposing a pre-existing
502 — Traefik proxied
http://…:8443to Crafty's HTTPS-only self-signed backend (Crafty serves no plain-HTTP panel;:8000only redirects). Added two service labels:loadbalancer.server.scheme=https— Traefik now speaks HTTPS to the backend.loadbalancer.serverstransport=insecure-skip-verify@file— references the named serversTransport defined in the controller-managed Traefik dynamic config (felhom-controller v0.83.0), which skips verifying Crafty's per-container self-signed cert. Verification stays ON for every other backend (scoped Option B; no globalinsecureSkipVerify). The@filesuffix is the cross-provider reference from the docker provider to the file-provider transport.- Requires felhom-controller ≥ v0.83.0 (which renders the
insecure-skip-verifytransport).port=8443and the router/tls labels are unchanged.
2026-06-26 — crafty-controller healthcheck fix (curl-absent + http-vs-TLS probe)
- crafty-controller: container was permanently
unhealthy→ route withheld (routeUnpublished). Two independent healthcheck root causes, both fixed in one change:- Docker healthcheck ran
curl -fk https://localhost:8443, but thecrafty-4:4.4.8image has nocurland nowget(exec: "curl": not found, FailingStreak 150). Replaced with a dependency-free python3 TLS-socket liveness probe (/usr/bin/python3is present): completes a TLS handshake to127.0.0.1:8443(unverified context mirrors the old-k; Crafty's cert is self-signed).start_period30s → 60s for cold-boot headroom (cert gen + migrations). - Controller-side probe (
.felhom.yml healthcheck.checks) wastype: httpagainst Crafty's TLS-only 8443 →probeHTTPsent plaintext HTTP, got a TLS record →HealthProbe.Healthy=false, whichmanager.gore-applies to override Docker's verdict back tounhealthy. Changedhttp→tcp(probeTCPdial succeeds against a TLS listener). Both layers had to change together. - Live-validated on guest 9201 (
demo-felhom): synced → recreated via the update path → DockerState.Health: healthy(ExitCode 0),health_probe.healthy: true(tcp :8443, 5ms), http-vs-TLS WARNs stopped, stable green 3+ min, Traefik now publishes the route (crafty-controller@docker). - Known follow-up (separate, out of this fix's scope): the public URL still returns 502 — a
distinct pre-existing bug the un-withheld route exposed: Traefik proxies
http://…:8443to Crafty's HTTPS-only backend. Needs a Traefik HTTPS-backend + self-signedserversTransport(insecureSkipVerify) in the controller-generated Traefik config — tracked separately.
- Docker healthcheck ran
2026-06-23 — gokapi: index redirect + admin username display
- gokapi: seed
RedirectUrlrepointed from Gokapi's GitHub default →https://${SUBDOMAIN}.${DOMAIN}/admin. Gokapi's bare root/redirects toRedirectUrl; the controller's "Megnyitás" link is always the bare subdomain root, so it was landing on Gokapi's GitHub instead of the app. Now/→/admin→ login. Applied to the live demo (config.json edit + restart) and the seed (future deploys). - gokapi: added
app_info.default_creds("Felhasználó: admin · jelszó a Beállítások oldalon") so the app-info page shows the initial admin user like other apps; fixedfirst_steps(no more setup wizard).
2026-06-23 — gokapi reproducible headless setup (fixes public "maintenance mode")
- gokapi: was stuck in "maintenance mode" on the public URL since first deploy — Gokapi's one-time
/setupwizard was never completed, and (verified against the docs + the v1.9.6 binary) no Gokapi version supports env-var headless setup for admin credentials. Worse, the unconfigured/setupwas publicly reachable = an unauthenticated admin-takeover window.- Fix: the compose
entrypointnow seeds aconfig.jsonon first boot (admin user, this app's public URLhttps://${SUBDOMAIN}.${DOMAIN}/, local storage, Encryption Level 0 so it restarts without a prompt) withPassword/SaltAdmin/SaltFilescleared, then runs Gokapi's documented--deployment-passwordone-shot to set the felhom-generated admin password before the server starts serving. The admin account is claimed at first boot →/setupis never exposed. .felhom.yml: newGOKAPI_PASSWORDdeploy field (type: password,generate: password:24, shown to the customer, locked after deploy). Admin username isadmin.- Seed is pinned to Gokapi v1.9.6 (
ConfigVersion 21) — re-capture the seed if the image is bumped. - Live-validated on guest 9201: fresh remove+redeploy → headless auto-config, public login works, no maintenance page, admin claimed at first boot (browser-verified login).
- Fix: the compose
2026-06-22 — gitea healthcheck fix (unattended test campaign)
- gitea: healthcheck probe repointed
/api/v1/version→/api/healthz(docker HC + controller.felhom.ymlprobe),start_period30s → 90s.- Surfaced during the Phase-2 deploy sweep: a fresh gitea reported
unhealthybecause/api/v1/versionreturns 404 until the install wizard / INSTALL_LOCK completes, while the container was serving fine on :3000 (/api/healthz→ 200). Same class as the komga fix.
- Surfaced during the Phase-2 deploy sweep: a fresh gitea reported
2026-06-22 — komga healthcheck fix (unattended test campaign)
- komga: healthcheck probe repointed
/api/v1/actuator/health→/actuator/health.- Root cause: komga's Spring Boot actuator endpoint is served unauthenticated at
/actuator/health(HTTP 200), while everything under the/api/v1prefix is auth-gated — so the old probe got HTTP 401,curl -fexited 22, and the container reportedunhealthydespite serving normally on :25600. Diagnosed live on guest 9201 (probe matrix:/,/actuator/health,/api/v1/oauth2/providers,/loginall 200;/api/v1/actuator/health→ 401). - The
gotson/komga:1.20.0image shipscurl(verified), so the probe tool is unchanged.
- Root cause: komga's Spring Boot actuator endpoint is served unauthenticated at