From 47427e738145e525bb19ab20634b22f0068bae7e Mon Sep 17 00:00:00 2001 From: bp99 Date: Mon, 12 May 2025 12:21:54 +0200 Subject: [PATCH] Add kind cluster config example --- examples/kind.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/kind.yaml diff --git a/examples/kind.yaml b/examples/kind.yaml new file mode 100644 index 0000000..56c8fb0 --- /dev/null +++ b/examples/kind.yaml @@ -0,0 +1,15 @@ +--- +apiVersion: kind.x-k8s.io/v1alpha4 +kind: Cluster +name: ut-kind +nodes: +- role: control-plane + extraPortMappings: + - containerPort: 27000 + hostPort: 27000 + listenAddress: "127.0.0.1" + protocol: UDP + - containerPort: 27080 + hostPort: 27080 + listenAddress: "127.0.0.1" + protocol: TCP