diff --git a/e2e/nomostest/clusters/kind.go b/e2e/nomostest/clusters/kind.go index 639f463b2..0fce7b7b1 100644 --- a/e2e/nomostest/clusters/kind.go +++ b/e2e/nomostest/clusters/kind.go @@ -186,12 +186,13 @@ func createKindCluster(p *cluster.Provider, name, kcfgPath string, version KindV }, // Enable ValidatingAdmissionWebhooks in the Kind cluster, as these // are disabled by default. + // Also mount etcd to tmpfs for memory-backed storage. KubeadmConfigPatches: []string{ ` -apiVersion: kubeadm.k8s.io/v1beta2 kind: ClusterConfiguration -metadata: - name: config +etcd: + local: + dataDir: /tmp/etcd apiServer: extraArgs: "enable-admission-plugins": "ValidatingAdmissionWebhook"`,