From e322edc395c87d990f2a89785ae9e46573490e3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20F=20Bj=C3=B6rklund?= Date: Thu, 5 May 2022 19:13:44 +0200 Subject: [PATCH] The node taint was renamed with k8s 1.24 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This caused any pods not in kube-system to go "pending" while looking for a worker node... Signed-off-by: Anders F Björklund --- examples/k8s.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/k8s.yaml b/examples/k8s.yaml index f9d3b3b0476..a84cad1a967 100644 --- a/examples/k8s.yaml +++ b/examples/k8s.yaml @@ -118,7 +118,7 @@ provision: # Installing a Pod network add-on kubectl apply -f https://raw.githubusercontent.com/flannel-io/flannel/v0.14.0/Documentation/kube-flannel.yml # Control plane node isolation - kubectl taint nodes --all node-role.kubernetes.io/master- + kubectl taint nodes --all node-role.kubernetes.io/control-plane- sed -e "s/${LIMA_CIDATA_SLIRP_IP_ADDRESS:-192.168.5.15}/127.0.0.1/" -i $KUBECONFIG mkdir -p ${HOME:-/root}/.kube && cp -f $KUBECONFIG ${HOME:-/root}/.kube/config probes: