Allow to configure dnsmasq image in developer installation

Change-Id: Ie39a5f306674a68c8663f9c9e598229bb9fbad50
This commit is contained in:
Andrii Ostapenko 2019-08-13 20:49:30 -05:00
parent 3af5f78f5c
commit 6bfa7d01d9

View File

@ -21,6 +21,8 @@ OSH_EXT_SUBNET="172.24.4.0/24"
sudo ip addr add ${OSH_BR_EX_ADDR} dev br-ex
sudo ip link set br-ex up
: ${DNSMASQ_IMAGE:=docker.io/openstackhelm/neutron:ocata}
# NOTE(portdirect): With Docker >= 1.13.1 the default FORWARD chain policy is
# configured to DROP, for the l3 agent to function as expected and for
# VMs to reach the outside world correctly this needs to be set to ACCEPT.
@ -37,7 +39,7 @@ sudo docker run -d \
--cap-add=NET_ADMIN \
--volume /etc/kubernetes/kubelet-resolv.conf:/etc/kubernetes/kubelet-resolv.conf:ro \
--entrypoint dnsmasq \
docker.io/openstackhelm/neutron:ocata \
${DNSMASQ_IMAGE} \
--keep-in-foreground \
--no-hosts \
--bind-interfaces \