From fd0f3a81d749407e6cc176357188a020d422d033 Mon Sep 17 00:00:00 2001 From: Peter Sprygada Date: Tue, 7 Jul 2026 13:30:18 -0400 Subject: [PATCH] fix: add missing kind-config.yaml for e2e cluster creation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The e2e Taskfile references kind-config.yaml to bootstrap the kind cluster, but the file was never committed. The .gitignore pattern 'kind-*.yaml' also blocked it — narrowed to 'kind-config-local.yaml' to only ignore local overrides. --- .gitignore | 1 - test/e2e/kind-config.yaml | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 test/e2e/kind-config.yaml diff --git a/.gitignore b/.gitignore index 0551741..fac6878 100644 --- a/.gitignore +++ b/.gitignore @@ -48,7 +48,6 @@ kubeconfig.* .kube/ # kind cluster artifacts -kind-*.yaml kind-config-local.yaml # Helm temporary artifacts diff --git a/test/e2e/kind-config.yaml b/test/e2e/kind-config.yaml new file mode 100644 index 0000000..f64b87e --- /dev/null +++ b/test/e2e/kind-config.yaml @@ -0,0 +1,4 @@ +kind: Cluster +apiVersion: kind.x-k8s.io/v1alpha4 +nodes: + - role: control-plane