Closed rafaeltuelho closed 1 year ago
This issue has been automatically marked as stale due to 90 days of inactivity. It will be closed if no further activity occurs within 15 days. If you think that’s incorrect or the issue should never stale, please simply write any comment. Thanks for your contributions!
When working with Camel-k on a local Kubernetes environment (eg. Minikube) I noticed the Operator get fails to build and deploy a kit. The error msg I could see inspecting the Operator's log is:
Apparently, during the building kit phase, the Operator fails to pull the image from the internal Image Registry. Maybe due to some dangling image.
@christophd shared with me a workaround to solve this issue:
kubectl delete ik --all
in the Camel K operator namespace.docker rmi $(docker images -f "dangling=true" -q)
.kamel delete --all
in failed state (maybe optional)I think it worth to add this workaround to the https://camel.apache.org/camel-k/1.11.x/troubleshooting/known-issues.html page