Skip to content

Commit

Permalink
allow to push via http to local ip addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
damoon committed Jan 27, 2022
1 parent 961887c commit 27bf137
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkg/kubernetes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,14 @@ spec:
args:
- |
while true; do
dockerd-entrypoint.sh dockerd --host=tcp://0.0.0.0:12375 --tls=false --mtu=1300 &> /dev/null
dockerd-entrypoint.sh dockerd \
--host=tcp://0.0.0.0:12375 \
--tls=false \
--mtu=1300 \
--insecure-registry=10.0.0.0/8 \
--insecure-registry=172.16.0.0/12 \
--insecure-registry=192.168.0.0/16 \
&> /dev/null
date;
echo restarted to avoid OOM during builds;
done
Expand Down

0 comments on commit 27bf137

Please sign in to comment.