Migrate open-webui, add agents-runtime, fix gumbo LLM model
This commit is contained in:
parent
793ed80416
commit
ec80c90b4d
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue