@@ -62,13 +62,14 @@ source "${OS_ROOT}/images/dind/node/openshift-dind-lib.sh"
62
62
63
63
function start() {
64
64
local origin_root=$1
65
- local config_root=$2
66
- local deployed_config_root=$3
67
- local cluster_id=$4
68
- local network_plugin=$5
69
- local wait_for_cluster=$6
70
- local node_count=$7
71
- local additional_args=$8
65
+ local ovn_root=$2
66
+ local config_root=$3
67
+ local deployed_config_root=$4
68
+ local cluster_id=$5
69
+ local network_plugin=$6
70
+ local wait_for_cluster=$7
71
+ local node_count=$8
72
+ local additional_args=$9
72
73
73
74
# docker-in-docker's use of volumes is not compatible with SELinux
74
75
check-selinux
@@ -94,6 +95,13 @@ function start() {
94
95
echo " OPENSHIFT_ADDITIONAL_ARGS='${additional_args} '" > " ${config_root} /additional-args"
95
96
copy-runtime " ${origin_root} " " ${config_root} /"
96
97
98
+ ovn_kubernetes=
99
+ if [ -d " ${ovn_root} " ]; then
100
+ copy-ovn-runtime " ${ovn_root} " " ${config_root} /"
101
+ ovn_kubernetes=1
102
+ fi
103
+ echo " OPENSHIFT_OVN_KUBERNETES=${ovn_kubernetes} " > " ${config_root} /ovn-kubernetes"
104
+
97
105
# Create containers
98
106
start-container " ${config_root} " " ${deployed_config_root} " " ${MASTER_IMAGE} " " ${MASTER_NAME} "
99
107
for name in " ${NODE_NAMES[@]} " ; do
@@ -462,6 +470,25 @@ function copy-runtime() {
462
470
cp " ${osdn_plugin_path} /bin/openshift-sdn-ovs" " ${target} "
463
471
}
464
472
473
+ function copy-ovn-runtime() {
474
+ local ovn_root=$1
475
+ local target=$2
476
+
477
+ local ovn_go_controller_built_binaries_path=" ${ovn_root} /go-controller/_output/go/bin"
478
+ cp " ${ovn_go_controller_built_binaries_path} /ovnkube" " ${target} "
479
+ cp " ${ovn_go_controller_built_binaries_path} /ovn-kube-util" " ${target} "
480
+
481
+ local ovn_k8s_binaries_path=" ${ovn_root} /bin"
482
+ cp " ${ovn_k8s_binaries_path} /ovn-k8s-cni-overlay" " ${target} "
483
+ cp " ${ovn_k8s_binaries_path} /ovn-k8s-gateway-helper" " ${target} "
484
+ cp " ${ovn_k8s_binaries_path} /ovn-k8s-overlay" " ${target} "
485
+ cp " ${ovn_k8s_binaries_path} /ovn-k8s-util" " ${target} "
486
+ cp " ${ovn_k8s_binaries_path} /ovn-k8s-watcher" " ${target} "
487
+
488
+ local ovn_k8s_python_module_path=" ${ovn_root} /ovn_k8s"
489
+ cp -R " ${ovn_k8s_python_module_path} " " ${target} /"
490
+ }
491
+
465
492
function wait-for-cluster() {
466
493
local config_root=$1
467
494
local expected_node_count=$2
@@ -570,6 +597,8 @@ NODE_IMAGE="openshift/dind-node"
570
597
MASTER_IMAGE=" openshift/dind-master"
571
598
ADDITIONAL_ARGS=" "
572
599
600
+ OVN_ROOT=" ${OVN_ROOT:-/ nowhere} "
601
+
573
602
case " ${1:- " " } " in
574
603
start)
575
604
BUILD=
@@ -633,7 +662,7 @@ case "${1:-""}" in
633
662
fi
634
663
635
664
NETWORK_PLUGIN=" $( get-network-plugin " ${NETWORK_PLUGIN} " ) "
636
- start " ${OS_ROOT} " " ${CONFIG_ROOT} " " ${DEPLOYED_CONFIG_ROOT} " \
665
+ start " ${OS_ROOT} " " ${OVN_ROOT} " " ${ CONFIG_ROOT}" " ${DEPLOYED_CONFIG_ROOT} " \
637
666
" ${CLUSTER_ID} " " ${NETWORK_PLUGIN} " " ${WAIT_FOR_CLUSTER} " \
638
667
" ${NODE_COUNT} " " ${ADDITIONAL_ARGS} "
639
668
;;
0 commit comments