2026-01-26 11:20:11 -08:00
|
|
|
# Immich - Self-hosted photo and video management
|
|
|
|
|
# High-performance Google Photos/iCloud alternative with AI features
|
|
|
|
|
#
|
2026-04-04 09:42:25 -07:00
|
|
|
# Kustomize manifests in argocd/manifests/immich/
|
|
|
|
|
# Components: server, machine-learning, valkey (Redis)
|
2026-01-26 11:20:11 -08:00
|
|
|
#
|
|
|
|
|
# Prerequisites:
|
2026-04-04 09:42:25 -07:00
|
|
|
# 1. Create immich namespace and secrets:
|
2026-01-26 11:20:11 -08:00
|
|
|
# kubectl create namespace immich
|
2026-04-04 09:42:25 -07:00
|
|
|
# kubectl --context=minikube-indri create secret generic immich-db -n immich \
|
|
|
|
|
# --from-literal=password="$(kubectl --context=minikube-indri -n databases get secret immich-pg-app -o jsonpath='{.data.password}' | base64 -d)"
|
|
|
|
|
# 2. Create immich-pg database and user (see immich-pg app)
|
|
|
|
|
# 3. NFS share on sifaka at /volume1/photos with read/write for indri
|
2026-01-26 11:20:11 -08:00
|
|
|
apiVersion: argoproj.io/v1alpha1
|
|
|
|
|
kind: Application
|
|
|
|
|
metadata:
|
|
|
|
|
name: immich
|
|
|
|
|
namespace: argocd
|
|
|
|
|
spec:
|
|
|
|
|
project: default
|
2026-04-04 09:42:25 -07:00
|
|
|
source:
|
|
|
|
|
repoURL: ssh://forgejo@forge.ops.eblu.me:2222/eblume/blumeops.git
|
|
|
|
|
targetRevision: main
|
|
|
|
|
path: argocd/manifests/immich
|
2026-01-26 11:20:11 -08:00
|
|
|
destination:
|
|
|
|
|
server: https://kubernetes.default.svc
|
|
|
|
|
namespace: immich
|
|
|
|
|
syncPolicy:
|
|
|
|
|
syncOptions:
|
|
|
|
|
- CreateNamespace=true
|