File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ RUN rm -f /etc/cni/net.d/*
35
35
# with the newer release. (This can go away when the base image is upgraded to
36
36
# OVS 2.8 prerelease or release versions and include OVN sub-packages)
37
37
RUN dnf -y install dnf-plugins-core &&\
38
- dnf -y copr enable leifmadsen/ovs-master &&\
38
+ dnf -y copr enable danw/origin-dind-ovs &&\
39
39
dnf -y update openvswitch &&\
40
40
dnf -y install openvswitch-ovn-*
41
41
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ function is-northd-running() {
16
16
function have-token() {
17
17
local master_dir=$1
18
18
19
- cat ${master_dir} /ovn.token > /dev/null
19
+ [[ -s " ${master_dir} /ovn.token" ]]
20
20
}
21
21
22
22
function ovn-kubernetes-node() {
45
45
apiserver=$( grep server ${kube_config} | cut -f 6 -d' ' )
46
46
ovn_master_ip=$( echo -n ${apiserver} | cut -d " /" -f 3 | cut -d " :" -f 1)
47
47
48
+ # Ensure GENEVE's UDP port isn't firewalled
49
+ /usr/share/openvswitch/scripts/ovs-ctl --protocol=udp --dport=6081 enable-protocol
50
+
48
51
os::util::wait-for-condition " ovn-northd" " is-northd-running ${ovn_master_ip} " " 120"
49
52
50
53
echo " Enabling and start ovn-kubernetes node services"
You can’t perform that action at this time.
0 commit comments