I’m running drone inside kubernetes. I installed it by hand, made the service/deployment for the drone/server and for the drone/drone-runner-kube (both using latest image).
I’m trying to build a docker image for an elixir/phoenix app using plugins/docker, but for some reason it seems to have different network issues:
FROM elixir:1.9.2-alpine as deps
WORKDIR /opt/project/
RUN apk add curl
COPY mix.exs mix.lock ./
RUN mix local.hex --force
RUN mix deps.get --only prod
Solved the issue, it wasn’t the kubernetes runner fault.
Since I’m running docker in docker in docker (give or take a level) the docker daemon container created by plugins/docker is created with a bad MTU value of 1500 when it should be 1440 (at least in my case).
had the same problem, drone’s docker plugin failing apparently after the APK command.
After trying everything for hours the above suggestion fixed it for me!
thanks!