- argocd/manifests/immich-ringtail/: full port of the immich stack
(server, ML, valkey, services, ingress, pvc-ml-cache) from
argocd/manifests/immich/, with ringtail-specific tweaks:
- deployment-ml: runtimeClassName=nvidia, nvidia.com/gpu:1 limit,
-cuda image tag
- deployment-valkey + kustomization: drop the
registry.ops.eblu.me/blumeops/valkey mirror (arm64-only), use
upstream docker.io/valkey/valkey:8.1.6 (multi-arch)
- ingress-tailscale: tls.hosts=[photos-ringtail] for staging
- argocd/apps/immich-ringtail.yaml: new ArgoCD app (manual sync,
ringtail destination)
- argocd/manifests/nvidia-device-plugin/time-slicing-config.yaml:
bump replicas 2 -> 4 so the ringtail GPU can be shared by
frigate + ollama + immich-ml
The immich-db Secret in the immich namespace is created manually
(matching minikube pattern) — see argocd/apps/immich-ringtail.yaml
header for the procedure.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
31 lines
1 KiB
YAML
31 lines
1 KiB
YAML
# Immich on ringtail k3s.
|
|
#
|
|
# Staging deployment; the minikube `immich` app remains in parallel
|
|
# until cutover. See [[immich-cutover-and-decommission]] for the
|
|
# routing flip + minikube cleanup.
|
|
#
|
|
# Prerequisites:
|
|
# - cnpg-on-ringtail + databases-ringtail (postgres)
|
|
# - 1password-connect-ringtail + external-secrets-ringtail (not used
|
|
# by this app today — immich-db Secret is created manually,
|
|
# matching the minikube pattern)
|
|
# - The immich-db Secret in the immich namespace, holding the
|
|
# password for the `immich` postgres role (copied from the source
|
|
# immich-pg-app Secret at migration time).
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: immich-ringtail
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: ssh://forgejo@forge.ops.eblu.me:2222/eblume/blumeops.git
|
|
targetRevision: main
|
|
path: argocd/manifests/immich-ringtail
|
|
destination:
|
|
server: https://ringtail.tail8d86e.ts.net:6443
|
|
namespace: immich
|
|
syncPolicy:
|
|
syncOptions:
|
|
- CreateNamespace=true
|