[ci skip] Assorted pending changes: ollama API auth, nvidia dashboard, traefik rewrite-body plugin

- ollama: Add basicAuth middleware for external API access
- monitoring: Update nvidia dashboard (add GPU memory per app panel, bump to v9)
- plotting-book: Switch to ancamilea/book-plotter:latest, add lifecycle ignore
- reverse_proxy/factory: Fix rybbit plugin name (rewritebody -> rewrite-body)
- traefik: Switch to packruler/rewrite-body plugin v1.2.0
This commit is contained in:
Viktor Barzin 2026-02-10 21:29:54 +00:00
parent 5e1e18a044
commit 73aab7f4ce
5 changed files with 180 additions and 27 deletions

View file

@ -25,6 +25,11 @@ resource "kubernetes_deployment" "plotting-book" {
tier = var.tier
}
}
lifecycle {
ignore_changes = [
spec[0].template[0].spec[0].container[0].image,
]
}
spec {
replicas = 1
selector {
@ -40,9 +45,10 @@ resource "kubernetes_deployment" "plotting-book" {
}
spec {
container {
# image = "ancamilea/book-plotter:7"
image = "viktorbarzin/book-plotter:7"
name = "plotting-book"
image = "ancamilea/book-plotter:latest"
# image = "viktorbarzin/book-plotter:7"
name = "plotting-book"
image_pull_policy = "Always"
port {
container_port = 3001
}