a4253f09cd
cheeztv is a second, kids-only Jellyfin instance in the media project. Kids titles need a separate, safe library front (cheeztv.unkin.net) while staying resumable in the existing adult instance (fafflix). - apps/base/cheeztv: mirror the jellyfin (fafflix) HA stack 1:1 - same jellyfin-ha:v0.1.3 fork image, 2-replica StatefulSet, RWX transcode PVC, Intel iGPU transcode, CNPG Postgres + PgBouncer, Valkey transcode store, k8up config backup, VMPodScrape. Media mounts subPath kids on the shared movies/tv CephFS subvolumes so cheeztv sees only the kids trees. - Separate state: own namespace, config PVC, cheeztv-postgres cluster, cheeztv-valkey, and cnpg-cheeztv / cheeztv-config-backup buckets - nothing shared with fafflix. - Ingress/DNS: cheeztv.unkin.net (internal Traefik + external-dns at 198.18.200.4, cert-manager cheeztv-tls) plus the cluster hostname variant cheeztv.k8s.syd1.au.unkin.net, matching how fafflix and logviewer.unkin.net are wired. - fafflix: add movies/kids and tvshows/kids subPath mounts alongside its existing media mounts so kids libraries are browsable/resumable there; its existing mounts, hostname and ingress are untouched. - Register cheeztv in the media ApplicationSet generator and AppProject destinations.
59 lines
1.6 KiB
YAML
59 lines
1.6 KiB
YAML
---
|
|
# k8up Schedule: restic backups of the cheeztv-config PVC (library metadata,
|
|
# plugins, config XML) to the dedicated Ceph RGW config-backup bucket. S3 creds
|
|
# come from the cephrgw BucketAccess Secret (cheeztv-config-backup-s3); the
|
|
# restic repo password comes from Vault via the cheeztv-k8up-restic Secret.
|
|
#
|
|
# s3.ceph.unkin.net presents the internal unkin.net CA, which the k8up/restic
|
|
# image does not trust by default, so the reflected vault-ca-cert Secret is
|
|
# mounted into every job pod and pointed at via backend.tlsOptions.caCert.
|
|
apiVersion: k8up.io/v1
|
|
kind: Schedule
|
|
metadata:
|
|
name: cheeztv-config
|
|
namespace: cheeztv
|
|
spec:
|
|
backend:
|
|
repoPasswordSecretRef:
|
|
name: cheeztv-k8up-restic
|
|
key: password
|
|
s3:
|
|
endpoint: https://s3.ceph.unkin.net
|
|
bucket: cheeztv-config-backup
|
|
accessKeyIDSecretRef:
|
|
name: cheeztv-config-backup-s3
|
|
key: AWS_ACCESS_KEY_ID
|
|
secretAccessKeySecretRef:
|
|
name: cheeztv-config-backup-s3
|
|
key: AWS_SECRET_ACCESS_KEY
|
|
tlsOptions:
|
|
caCert: /etc/k8up/ca/ca.crt
|
|
volumeMounts:
|
|
- name: vault-ca
|
|
mountPath: /etc/k8up/ca
|
|
readOnly: true
|
|
backup:
|
|
schedule: "0 2 * * *"
|
|
failedJobsHistoryLimit: 3
|
|
successfulJobsHistoryLimit: 3
|
|
volumes:
|
|
- name: vault-ca
|
|
secret:
|
|
secretName: vault-ca-cert
|
|
prune:
|
|
schedule: "0 3 * * 0"
|
|
retention:
|
|
keepDaily: 14
|
|
keepWeekly: 8
|
|
keepMonthly: 12
|
|
volumes:
|
|
- name: vault-ca
|
|
secret:
|
|
secretName: vault-ca-cert
|
|
check:
|
|
schedule: "0 4 * * 0"
|
|
volumes:
|
|
- name: vault-ca
|
|
secret:
|
|
secretName: vault-ca-cert
|