-
Creating cluster "tracetest" ... Unfortunately, an error has occurred: This error is likely caused by: If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands: Additionally, a control plane component may have crashed or exited when started by the container runtime. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
It seems your kind cluster kube-apiserver is unhealthy. You can refer to the kind troubleshooting guide here: https://kind.sigs.k8s.io/docs/user/known-issues/#troubleshooting-kind In particular, try running $ docker exec -it tracetest-control-plane bash
root@tracetest-control-plane:/# less /var/log/containers/kube-apiserver/*.log and try looking for errors in the apiserver logs. |
Beta Was this translation helpful? Give feedback.
-
Oh, the current defualt node image is 1.25.3, perhaps we should update it. |
Beta Was this translation helpful? Give feedback.
thanks for helping out, the issue was caused by feature-gates: ServerSideApply is enforced to true in kindest/node:v1.27.3, remove the line:
feature-gates: ServerSideApply=false in kind-cluster.yaml did the trick.