It could be that kubernetes is trying to re-pull the image. Did you
On Mon, Oct 30, 2017 at 11:15 PM, lppier <
mads...@gmail.com> wrote:
> Hi,
>
> I am setting up some servers in an offline environment, and am downloading
> some tensorflow images for use on these offline servers.
> The kubernetes cluster has been set up, and we have verified that the pods
> can be allocated to the various worker nodes.
>
> The issue now here is this - typically I use on the internet computer
>
> docker save mycontainername > myimage.tar
>
> and then on the offline server
>
> docker load < myimage.tar
>
> For the most part this has worked when we run the pod on kubernetes.
> However, now we are trying to make commits to the container on the internet
> computer.
> So now,
>
> docker commit CONTAINER_ID mycontainername2
>
> followed by:
>
> docker save mycontainername2 > myimage2.tar
>
> on the offline server:
>
> docker load < myimage2.tar
>
> In this case, kubernetes fails to load the pod that launches the docker
> container. We keep seeing crashloop as soon as the pod is launched. The
> difference is the container image in the second case had 1 commit.
>