From 400f5c94ea4507262b86b4c6087e5c715fc8b372 Mon Sep 17 00:00:00 2001 From: Vincent Camus Date: Thu, 12 Nov 2020 15:46:26 +0100 Subject: [PATCH] fix(14): kind api version (#62) I got this error without the change: $ ~/go/bin/kind create cluster --config 14-pdb/kind.yml ERROR: failed to create cluster: unknown apiVersion: kind.sigs.k8s.io/v1alpha3 --- 14-pdb/kind.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14-pdb/kind.yml b/14-pdb/kind.yml index db1fdf9..c7671d0 100644 --- a/14-pdb/kind.yml +++ b/14-pdb/kind.yml @@ -1,7 +1,7 @@ --- # three node (two workers) cluster config kind: Cluster -apiVersion: kind.sigs.k8s.io/v1alpha3 +apiVersion: kind.x-k8s.io/v1alpha4 nodes: - role: control-plane - role: worker