Commit 5e0cc217 authored by Yu-Ju Hong's avatar Yu-Ju Hong

node e2e: run kubelet with kubenet

parent b096b4a2
......@@ -241,6 +241,9 @@ func (es *e2eService) startKubeletServer() (*killCmd, error) {
"--config", es.kubeletStaticPodDir,
"--file-check-frequency", "10s", // Check file frequently so tests won't wait too long
"--v", LOG_VERBOSITY_LEVEL, "--logtostderr",
"--network-plugin=kubenet",
"--pod-cidr=10.180.0.0/24", // Assign a fixed CIDR to the node because there is no node controller.
"--hairpin-mode=hairpin-veth",
)
cmd := exec.Command("sudo", cmdArgs...)
hcc := newHealthCheckCommand(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment