Skip to content

Commit 7791847

Browse files
committed
dind: fix token race, enable GENEVE UDP port, and update OVN repo
1 parent 8f8b25b commit 7791847

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

images/dind/node/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN dnf -y update && dnf -y install\
3131
# with the newer release. (This can go away when the base image is upgraded to
3232
# OVS 2.8 prerelease or release versions and include OVN sub-packages)
3333
RUN dnf -y install dnf-plugins-core &&\
34-
dnf -y copr enable leifmadsen/ovs-master &&\
34+
dnf -y copr enable danw/origin-dind-ovs-master &&\
3535
dnf -y update openvswitch &&\
3636
dnf -y install openvswitch-ovn-*
3737

images/dind/node/ovn-kubernetes-node.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function is-northd-running() {
1717
function have-token() {
1818
local master_dir=$1
1919

20-
cat ${master_dir}/ovn.token > /dev/null
20+
[[ -s "${master_dir}/ovn.token" ]]
2121
}
2222

2323
function ovn-kubernetes-node() {
@@ -46,6 +46,9 @@ EOF
4646
apiserver=$(grep server ${kube_config} | cut -f 6 -d' ')
4747
ovn_master_ip=$(echo -n ${apiserver} | cut -d "/" -f 3 | cut -d ":" -f 1)
4848

49+
# Ensure GENEVE's UDP port isn't firewalled
50+
/usr/share/openvswitch/scripts/ovs-ctl --protocol=udp --dport=6081 enable-protocol
51+
4952
os::util::wait-for-condition "ovn-northd" "is-northd-running ${ovn_master_ip}" "120"
5053

5154
echo "Enabling and start ovn-kubernetes node services"

0 commit comments

Comments
 (0)