Skip to content

Added note about kubernetes installations that has disabled docker network

Keyvan requested to merge k1-h/gitlab-runner:patch-3 into master

What does this MR do?

Added note about kubernetes installations that has disabled docker network

Why was this MR needed?

I had this issue and it took a while for me to figure it out, having note about this will give others a clue is future

Are there points in the code the reviewer needs to double check?

Syntax and style check

Does this MR meet the acceptance criteria?

  • Documentation created/updated
  • Tests
    • Added for this feature/bug
    • All builds are passing
  • Branch has no merge conflicts with master (if you do - rebase it please)

What are the relevant issue numbers?

None

I'm aware of e,g, issue, I'll fix it before merge. I wanted to add following example command but it made text ugly.

Example cammand might be something like this:

iptables -t nat -A POSTROUTING -s 172.17.0.0/16 ! -d 10.0.0.0/8 -m addrtype ! --dst-type LOCAL -j MASQUERADE

172.17.0.0/16 is docker interface IP and 10.0.0.0/8 is kubernetes network.

Merge request reports