watchstate: deploy admin-gated jellyfin watch-state sync tool #419

Merged
benvin merged 1 commits from benvin/watchstate-deploy into main 2026-08-25 21:39:08 +10:00
Member

Why

Deploy WatchState (arabcoders/watchstate), the Jellyfin/Plex/Emby watch-state
sync tool, as an internal admin tool. It gets an admin-only web UI/API gated the
same way as logviewer: an oauth2-proxy front backed by Authentik OIDC.

What

  • New watchstate namespace + media-project app; base at apps/base/watchstate,
    overlay at apps/overlays/au-syd1/watchstate.
  • Image ghcr.io/arabcoders/watchstate:v1.10.3 (current release; canonical
    upstream name, containerd mirrors route ghcr via artifactapi).
  • replicas: 1, strategy: Recreate, single 5Gi cephrbd-fast-delete RWO PVC
    at /config — sqlite + the in-container cron/redis are single-writer.
  • runAsUser/runAsGroup/fsGroup: 1000 (image's rootless user); liveness/readiness
    GET /v1/api/system/healthcheck on 8080 (route confirmed in upstream
    src/API/System/HealthCheck.php, no auth guard).
  • oauth2-proxy (mirrors logviewer 1:1) fronts every path. Authentik issuer
    identity.k8s.syd1.au.unkin.net, redirect
    https://watchstate.k8s.syd1.au.unkin.net/oauth2/callback. Authorization is
    enforced Authentik-side (akR-global-admin only), so no oauth2-proxy group
    allowlist is configured.
  • Internal-only Gateway (traefik-internal) for
    watchstate.k8s.syd1.au.unkin.net, vault-issuer TLS leaf, external-dns to
    198.18.200.4. HTTP -> HTTPS redirect.
  • VaultStaticSecret pulls OIDC creds from
    kv/kubernetes/namespace/watchstate/default/oauth-credentials; vault-ca-cert
    auto-reflects into the namespace.
  • Registered in the media ApplicationSet + AppProject.

Scrape decision

No VMPodScrape: WatchState exposes no Prometheus//metrics endpoint.

Follow-ups

  • Seed check: the VaultStaticSecret expects client_id, client_secret, and
    cookie_secret keys at the kv path. Only client_secret was confirmed seeded;
    client_id and a generated cookie_secret must also be present or the
    oauth2-proxy pod will not start.
  • Webhook ingestion: the Jellyfin webhook endpoint (/v1/api/webhook)
    currently sits behind oauth2-proxy like everything else. When sync is wired up,
    the jellyfins pushing webhooks will need an auth-bypass or an apikey route for
    that path.
## Why Deploy WatchState (arabcoders/watchstate), the Jellyfin/Plex/Emby watch-state sync tool, as an internal admin tool. It gets an admin-only web UI/API gated the same way as logviewer: an oauth2-proxy front backed by Authentik OIDC. ## What - New `watchstate` namespace + media-project app; base at `apps/base/watchstate`, overlay at `apps/overlays/au-syd1/watchstate`. - Image `ghcr.io/arabcoders/watchstate:v1.10.3` (current release; canonical upstream name, containerd mirrors route ghcr via artifactapi). - `replicas: 1`, `strategy: Recreate`, single `5Gi` `cephrbd-fast-delete` RWO PVC at `/config` — sqlite + the in-container cron/redis are single-writer. - `runAsUser/runAsGroup/fsGroup: 1000` (image's rootless user); liveness/readiness `GET /v1/api/system/healthcheck` on 8080 (route confirmed in upstream `src/API/System/HealthCheck.php`, no auth guard). - oauth2-proxy (mirrors logviewer 1:1) fronts every path. Authentik issuer `identity.k8s.syd1.au.unkin.net`, redirect `https://watchstate.k8s.syd1.au.unkin.net/oauth2/callback`. Authorization is enforced Authentik-side (akR-global-admin only), so no oauth2-proxy group allowlist is configured. - Internal-only Gateway (`traefik-internal`) for `watchstate.k8s.syd1.au.unkin.net`, `vault-issuer` TLS leaf, external-dns to `198.18.200.4`. HTTP -> HTTPS redirect. - `VaultStaticSecret` pulls OIDC creds from `kv/kubernetes/namespace/watchstate/default/oauth-credentials`; `vault-ca-cert` auto-reflects into the namespace. - Registered in the media `ApplicationSet` + `AppProject`. ## Scrape decision No `VMPodScrape`: WatchState exposes no Prometheus/`/metrics` endpoint. ## Follow-ups - **Seed check:** the VaultStaticSecret expects `client_id`, `client_secret`, and `cookie_secret` keys at the kv path. Only `client_secret` was confirmed seeded; `client_id` and a generated `cookie_secret` must also be present or the oauth2-proxy pod will not start. - **Webhook ingestion:** the Jellyfin webhook endpoint (`/v1/api/webhook`) currently sits behind oauth2-proxy like everything else. When sync is wired up, the jellyfins pushing webhooks will need an auth-bypass or an apikey route for that path.
unkin-agent added 1 commit 2026-08-25 21:07:57 +10:00
watchstate: deploy admin-gated jellyfin watch-state sync tool
ci/woodpecker/pr/vector-test Pipeline was successful
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/kubeconform Pipeline was successful
7db66455c9
Adds WatchState (arabcoders/watchstate v1.10.3) as a new media-project app,
fronted 1:1 by the logviewer oauth2-proxy admin-gate pattern.

- ghcr.io/arabcoders/watchstate:v1.10.3 (canonical image; containerd mirrors
  route ghcr via artifactapi), replicas 1 + Recreate, single 5Gi cephrbd-fast-delete
  RWO PVC at /config (sqlite + in-container cron/redis are single-writer).
- oauth2-proxy fronts every path; Authentik OIDC issuer
  identity.k8s.syd1.au.unkin.net, authorization enforced Authentik-side
  (akR-global-admin only), so no oauth2-proxy group allowlist.
- Internal-only Gateway (traefik-internal) for watchstate.k8s.syd1.au.unkin.net,
  vault-issuer TLS leaf, external-dns to 198.18.200.4.
- VaultStaticSecret pulls the seeded OIDC creds; vault-ca-cert auto-reflects.
- Registered in the media ApplicationSet + AppProject.

No VMPodScrape: WatchState exposes no /metrics endpoint.
benvin merged commit 48632eb9f9 into main 2026-08-25 21:39:08 +10:00
benvin deleted branch benvin/watchstate-deploy 2026-08-25 21:39:08 +10:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: unkin/argocd-apps#419