From 6138afb98b3c5590b250855b660efe4b8b136387 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Fri, 1 May 2026 22:17:53 +1000 Subject: [PATCH] feat: add litellm-env configmap with STORE_MODEL_IN_DB=True (#97) Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/97 --- apps/base/litellm/deployment.yaml | 4 ++++ apps/base/litellm/kustomization.yaml | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/apps/base/litellm/deployment.yaml b/apps/base/litellm/deployment.yaml index 4be8e2b..0f3b1fc 100644 --- a/apps/base/litellm/deployment.yaml +++ b/apps/base/litellm/deployment.yaml @@ -10,6 +10,8 @@ spec: app: litellm template: metadata: + annotations: + reloader.stakater.com/auto: "true" labels: app: litellm spec: @@ -31,6 +33,8 @@ spec: envFrom: - secretRef: name: litellm-credentials + - configMapRef: + name: litellm-env livenessProbe: httpGet: path: /health/liveliness diff --git a/apps/base/litellm/kustomization.yaml b/apps/base/litellm/kustomization.yaml index 5f4b578..dfd2cbd 100644 --- a/apps/base/litellm/kustomization.yaml +++ b/apps/base/litellm/kustomization.yaml @@ -21,3 +21,8 @@ configMapGenerator: - config.yaml=resources/config.yaml options: disableNameSuffixHash: true + - name: litellm-env + literals: + - STORE_MODEL_IN_DB=True + options: + disableNameSuffixHash: true