From 562a1e80b6a7409fe9697ed07adf24b1ea97a6a5 Mon Sep 17 00:00:00 2001 From: Ryan VanGundy Date: Thu, 17 Jul 2025 09:06:48 -0400 Subject: [PATCH] fix(config): Enable cluster by default The `cluster: enabled` setting should be true by default. By not including it, failures occurred due to the lack of `KUBECONFIG` environment variables. --- pkg/config/defaults.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/config/defaults.go b/pkg/config/defaults.go index 365c86fd4..4bc686538 100644 --- a/pkg/config/defaults.go +++ b/pkg/config/defaults.go @@ -28,6 +28,9 @@ var DefaultConfig = v1alpha1.Context{ Type: "local", }, }, + Cluster: &cluster.ClusterConfig{ + Enabled: ptrBool(true), + }, } var commonDockerConfig = docker.DockerConfig{