- setup.cfg: configure mypy to disable import-untyped errors (requests,
kubernetes lack stubs) and ignore kubernetes attr errors
- check_versions.py: annotate entry dict as dict[str, Any] to resolve
type errors on entry["image"] and entry["latest"] in mirror loop
- check_versions.py: restore correct file (import re was placed before
shebang causing E402 for all following imports; missing 'client' in
kubernetes import causing F821 at line 236)
- request_upgrades.py: remove unused 're' import and unused 'client'
from kubernetes import (only 'config' is needed here)
- web.py: remove unused 'os' import
- Dockerfile: add COPY for request_upgrades.py (was missing — root cause
of Monday upgrade CronJob failing with 'No such file'), add git (needed
for repo cloning in upgrade workflow), copy web.py + templates/
- requirements.txt: add fastapi, uvicorn, jinja2 for web dashboard
- web.py: FastAPI dashboard with image inventory and upgrade trigger pages
- templates/: base layout, images page (namespace→app→container grouped
with live version status), upgrade page (outdated list + trigger button
+ job history)
- kubernetes/web-deployment.yaml: Deployment + LoadBalancer at 192.168.87.13
- kubernetes/rbac.yaml: add version-tracker-web ServiceAccount, ClusterRole
(read pods/deployments/replicasets/statefulsets/daemonsets/jobs/cronjobs),
and namespace Role to create upgrade Jobs
- kubernetes/upgrade-cronjob.yaml: fix YAML indentation bug on GITEA_USERNAME
and GITEA_COMMITTER_NAME env vars
- Add request_upgrades.py and trigger-upgrade.sh
- Add upgrade-cronjob.yaml and manual-trigger.yaml (WorkflowTemplate)
- Fix git auth: use GITEA_USERNAME env var instead of hardcoded x-token
(Gitea requires username:token format, not x-token:token)