From d3e770254de0bb301815ca87257c8b1a357d06c4 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 26 Apr 2026 21:02:47 +0800 Subject: hehe --- terraform/modules/agent/variables.tf | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 terraform/modules/agent/variables.tf (limited to 'terraform/modules/agent/variables.tf') diff --git a/terraform/modules/agent/variables.tf b/terraform/modules/agent/variables.tf new file mode 100644 index 0000000..6f525ee --- /dev/null +++ b/terraform/modules/agent/variables.tf @@ -0,0 +1,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" +} -- cgit