Files
argocd-apps/apps/base/cheeztv/valkey.yaml
T
unkin-agent 94da740a9d Add cheeztv kids Jellyfin instance + fafflix kids mounts (#413)
## Why
Kids need their own safe Jellyfin front (cheeztv.unkin.net) with a library that only ever exposes kids titles, while those same titles stay resumable in the existing adult instance (fafflix). The fafflix.unkin.net domain switch is deliberately out of scope.

## How
- **New `cheeztv` instance** (`apps/base/cheeztv`): mirrors the fafflix HA Jellyfin stack 1:1 - same `jellyfin-ha:v0.1.3` fork image, 2-replica StatefulSet, RWX transcode PVC + HA takeover, Intel iGPU transcode, CNPG Postgres + PgBouncer, Valkey transcode store, k8up config backup, VMPodScrape.
- **Kids-only media**: its own static PVs on the *same* shared movies/tv CephFS subvolumes, mounted with `subPath: kids` so it sees only `movies/kids` and `tvshows/kids`.
- **Fully separate state**: own namespace, config PVC, `cheeztv-postgres` cluster, `cheeztv-valkey`, and `cnpg-cheeztv` / `cheeztv-config-backup` RGW buckets - nothing shared with fafflix.
- **DNS/cert**: `cheeztv.unkin.net` via internal Traefik + external-dns (198.18.200.4) + cert-manager `cheeztv-tls`, matching logviewer.unkin.net; plus the cluster hostname `cheeztv.k8s.syd1.au.unkin.net` mirroring fafflix.
- **fafflix change**: ADDS `movies/kids` + `tvshows/kids` subPath mounts alongside its current media mounts so kids libraries are resumable there. Existing mounts, hostname and ingress untouched.
- Registers cheeztv in the media ApplicationSet generator and AppProject destinations.

## Validation
kubeconform clean: cheeztv 28/28, jellyfin 25/25 valid. No arr/watchstate/domain changes.

Note: the k8up restic repo password must be seeded at `kv/kubernetes/namespace/cheeztv/default/k8up-restic` (same manual step as fafflix); templated Vault policy already grants read, no terraform-vault change needed.
Reviewed-on: #413
Co-authored-by: unkin-agent <unkin-agent@unkin.net>
Co-committed-by: unkin-agent <unkin-agent@unkin.net>
2026-08-25 19:59:08 +10:00

48 lines
2.0 KiB
YAML

---
# HA Valkey managed by valkey-operator as Jellyfin's distributed transcode-session
# store. shards:1 + replicas:2 is one primary with two replicas in a single shard
# group (three ValkeyNodes total): losing the primary triggers an automatic
# failover to a replica, so a node/pod loss no longer drops the shared transcode
# lease state the two Jellyfin replicas coordinate through. The operator always
# runs Valkey cluster-mode-enabled with protected-mode off and leaves the built-in
# `default` user passwordless, so clients connect with no auth/TLS (parity with the
# old open redis); StackExchange.Redis seeds off the single headless service and
# auto-discovers the topology plus failovers, so the connection string is
# unchanged. scheduling.node.spread.shard:Required renders pod anti-affinity that
# keeps the three nodes on distinct hosts (kubernetes.io/hostname), so one host
# loss removes at most one node. podDisruptionBudget.mode:Cluster lets the operator
# manage a quorum-aware PDB. Persistence stays omitted so /data is an emptyDir:
# lease state is ephemeral (30s TTLs), replication+failover already provide
# redundancy and a replaced node re-syncs from the primary, and an operator-managed
# PVC cannot carry the k8up.io/backup:"false" annotation the namespace's
# cluster-wide k8up Schedule needs to skip in-use RWO volumes.
apiVersion: valkey.io/v1alpha1
kind: ValkeyCluster
metadata:
name: cheeztv-valkey
namespace: cheeztv
spec:
shards: 1
replicas: 2
image: docker.io/valkey/valkey:9.0.0
# redis_exporter sidecar (:9121, port name `metrics`) on every ValkeyNode pod;
# the operator manages a dedicated _exporter ACL user for it. Image version
# pinned; scraped by valkey-exporter VMPodScrape in vmpodscrape.yaml.
exporter:
enabled: true
image: docker.io/oliver006/redis_exporter:v1.89.0
scheduling:
node:
spread:
shard:
mode: Required
podDisruptionBudget:
mode: Cluster
resources:
requests:
cpu: 50m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi