Specific Docker Command in Kubernetes

7/22/2015

I am trying to start a Bro container in a Pod. In docker I would normally run something like this: docker run -d --net=host --name bro Is there something in the container spec that would replicate that functionality?

-- KSB
kubernetes

1 Answer

7/22/2015

You can use the hostNetwork option of the API to run a pod on the host's network.

-- Alex Robinson
Source: StackOverflow