Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
This comment has been deleted
Heya,
Just came across this answer and decided to write some general guidelines for anyone who comes across this in the future despite the old question.
InvalidImageName suggests that the Docker image specified in your Kubernetes manifests can’t be found. Here are some possibilities:
To troubleshoot:
You can use the following command to inspect the information about a problematic pod: kubectl describe pod <pod-name> It will provide more details, including the events occurring to the pod. In case you find out that there is indeed an issue with the image or the image registry, you can update the Deployment or the pod’s manifest file with the correct image information and then apply the changes: kubectl apply -f <manifest.yaml> For more robust debugging, check this guide that is part of the DigitalOcean documentation.
Hope that this helps!