blob: 6f525eefe333d18e929789c2dc1a1766f98a9985 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
variable "namespace" {
type = string
}
variable "agent_source_path" {
type = string
description = "Absolute path to agent/agent.py. Used only to bounce pods on code change."
}
variable "agent_image" {
type = string
default = "localhost/agent:0.1.0"
description = "Pre-built agent image. Must be loaded into kind with `make agent-build`."
}
variable "llm_service_url" {
type = string
description = "OpenAI-compatible base URL, e.g. http://llm-llm-app.llm-prod.svc.cluster.local:8000/v1"
}
variable "model_alias" {
type = string
default = "Qwen2.5-1.5B-Instruct"
}
variable "ingress_host" {
type = string
}
variable "ingress_class" {
type = string
default = "nginx"
}
|