What is Kubernetes - Images


Kubernetes (Docker) images are the primary elements of Containerized Infrastructure. At present we only support Kubernetes for support of Docker images. Every pod runs a Docker image running within it. If you're keen to master the fundamentals of Kubernetes take a look at taking a Kubernetes course to improve your understanding.

When we configure an image for a pod, the parameter in our configuration files is the same syntax that the Docker command. The configuration file includes an entry to specify the image's name that we plan to get directly from registry.

The following is the standard configuration structure that will pull images from the Docker registry and then deploy it the Kubernetes container.

 

0 Views