From 9d1d79b774b875c1060df925ff3bef73e3ac51b9 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Wed, 15 Jul 2026 21:03:11 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20kubeconfig=20path=20default=20for=20runn?= =?UTF-8?q?er=20container=20=E2=80=94=20use=20/tmp/kubeconfig=20not=20loca?= =?UTF-8?q?l=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- terraform/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/variables.tf b/terraform/variables.tf index 74eac76..5f209f8 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -1,7 +1,7 @@ variable "kubeconfig_path" { description = "Path to kubeconfig file" type = string - default = "cluster-config/kubeconfig" + default = "/tmp/kubeconfig" } variable "cluster_domain" {