The errors you're encountering are primarily related to network issues that prevent your Kubernetes pods from pulling Docker images. The ImagePullBackOff
error indicates that Kubernetes is repeatedly trying and failing to download the required container images (wazuh/wazuh-dashboard:4.7.5
and busybox
). The root cause seems to be a network connectivity issue, as indicated by the dial tcp i/o timeout
and request canceled while waiting for connection
messages.
Here’s a step-by-step guide to troubleshoot and potentially fix these issues:
Ensure that your Minikube node has proper internet connectivity. You can verify this by running:
kubectl exec -it <pod_name> -- curl -I https://registry-1.docker.io/v2/
This command attempts to reach Docker Hub from inside one of your running pods (if any). If it fails, you likely have a network issue.