Deploying a local Docker image (DockerFIle) as a local Kubernetes module

I started the Kubernetes master and minion on the local machine using Vagrant. I can create a json file for my kubernetnogo module, where I can run several public containers.

However, one Docker container is local, ontop on java:8-jdk, configured with DockerFile.

How can I refer to this local Docker container in kubernetes json pod so that the tunnels can run it?

In other words, does Kubernete support docker assembly;)

+4
source share
1 answer

, , " " , docker load -i /path/to/image.tar. , Kubernetes , .

+3

Source: https://habr.com/ru/post/1589462/


All Articles