Migrate open-webui, add agents-runtime, fix gumbo LLM model

This commit is contained in:
Antigravity 2026-05-21 22:36:43 -04:00
parent 793ed80416
commit ec80c90b4d
5 changed files with 32 additions and 3 deletions

View File

@ -44,7 +44,9 @@ spec:
- name: MCP_FS_SSE_URL
value: "http://mcp-filesystem.tools-mcp.svc.cluster.local:8080/sse"
- name: LITELLM_BASE_URL
value: "http://litellm.ai-core.svc.cluster.local:4000/v1"
value: "http://ollama.ai-core.svc.cluster.local:11434/v1"
- name: GUMBO_LLM_MODEL
value: "qwen2.5:3b"
- name: LITELLM_API_KEY
valueFrom:
secretKeyRef:

View File

@ -41,12 +41,16 @@ spec:
value: "temporal-frontend.ai-core.svc.cluster.local:7233"
- name: TEMPORAL_NAMESPACE
value: "default"
- name: PYTHONUNBUFFERED
value: "1"
- name: GUMBO_TASK_QUEUE
value: "gumbo"
- name: MCP_FS_SSE_URL
value: "http://mcp-filesystem.tools-mcp.svc.cluster.local:8080/sse"
- name: LITELLM_BASE_URL
value: "http://litellm.ai-core.svc.cluster.local:4000/v1"
value: "http://ollama.ai-core.svc.cluster.local:11434/v1"
- name: GUMBO_LLM_MODEL
value: "qwen2.5:3b"
- name: LITELLM_API_KEY
valueFrom:
secretKeyRef:

View File

@ -26,7 +26,7 @@ spec:
imagePullPolicy: IfNotPresent
env:
- name: OLLAMA_BASE_URL
value: "http://litellm.ai-core.svc.cluster.local:4000" # Pointing to LiteLLM router!
value: "http://ollama.ai-core.svc.cluster.local:11434"
- name: WEBUI_AUTH
value: "False" # Based on default, keeping it simple or whatever they had
ports:

View File

@ -0,0 +1,22 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: agents-runtime
namespace: argocd
annotations:
argocd.argoproj.io/sync-wave: "2"
spec:
project: agentic-os
source:
repoURL: http://192.168.8.248:3000/deepkoluguri/agents-runtime.git
targetRevision: main
path: k8s
destination:
server: https://kubernetes.default.svc
namespace: agents-runtime
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true

View File

@ -10,6 +10,7 @@ spec:
# Lock down to known repos only — never use wildcard in production.
sourceRepos:
- "http://192.168.8.248:3000/deepkoluguri/agentic-os.git"
- "http://192.168.8.248:3000/deepkoluguri/agents-runtime.git"
- "https://charts.jetstack.io"
- "https://charts.external-secrets.io"
- "https://cloudnative-pg.github.io/charts"