From fb65df209053b37079088101fdd185139bfbaf0a Mon Sep 17 00:00:00 2001 From: Nigel Barink Date: Tue, 1 Jul 2025 22:00:25 +0200 Subject: [PATCH] add mount point for docker.sock in kind --- clusterconfig.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/clusterconfig.yaml b/clusterconfig.yaml index 095d55f..94f7dc5 100644 --- a/clusterconfig.yaml +++ b/clusterconfig.yaml @@ -2,6 +2,19 @@ kind: Cluster apiVersion: kind.x-k8s.io/v1alpha4 nodes: - role: control-plane + extraMounts: + - hostPath: /var/run/docker.sock + containerPath: /var/run/docker.sock - role: worker + extraMounts: + - hostPath: /var/run/docker.sock + containerPath: /var/run/docker.sock - role: worker + extraMounts: + - hostPath: /var/run/docker.sock + containerPath: /var/run/docker.sock - role: worker + extraMounts: + - hostPath: /var/run/docker.sock + containerPath: /var/run/docker.sock +