Fix borgmatic backup: use correct kubectl context on indri

The Mealie SQLite dump hook used `minikube-indri` (the context name on
gilbert), but on indri itself the context is just `minikube`. This caused
the before_backup hook to fail, aborting all backups since the hook was added.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-03-18 06:07:44 -07:00
commit 3e9873d669
2 changed files with 2 additions and 1 deletions

View file

@ -43,7 +43,7 @@ borgmatic_k8s_sqlite_dumps:
namespace: mealie
label_selector: app=mealie
db_path: /app/data/mealie.db
context: minikube-indri
context: minikube
# Exclude patterns
borgmatic_exclude_patterns: []

View file

@ -0,0 +1 @@
Fix borgmatic backup failure: use correct kubectl context (`minikube`) on indri for Mealie SQLite dump hook