@@ -44,31 +44,31 @@ func TestStartStop(t *testing.T) {
44
44
name string
45
45
args []string
46
46
}{
47
- {"oldest" , []string { // nocache_oldest
47
+ {"oldest" , []string {
48
48
"--cache-images=false" ,
49
49
fmt .Sprintf ("--kubernetes-version=%s" , constants .OldestKubernetesVersion ),
50
50
// default is the network created by libvirt, if we change the name minikube won't boot
51
51
// because the given network doesn't exist
52
52
"--kvm-network=default" ,
53
53
"--kvm-qemu-uri=qemu:///system" ,
54
54
}},
55
- {"cni" , []string { // feature_gates_newest_cni
55
+ {"cni" , []string {
56
56
"--feature-gates" ,
57
57
"ServerSideApply=true" ,
58
58
"--network-plugin=cni" ,
59
59
"--extra-config=kubelet.network-plugin=cni" ,
60
60
"--extra-config=kubeadm.pod-network-cidr=192.168.111.111/16" ,
61
61
fmt .Sprintf ("--kubernetes-version=%s" , constants .NewestKubernetesVersion ),
62
62
}},
63
- {"containerd" , []string { // containerd_and_non_default_apiserver_port
63
+ {"containerd" , []string {
64
64
"--container-runtime=containerd" ,
65
65
"--docker-opt containerd=/var/run/containerd/containerd.sock" ,
66
66
"--apiserver-port=8444" ,
67
67
}},
68
- {"crio" , []string { // crio_ignore_preflights
68
+ {"crio" , []string {
69
69
"--container-runtime=crio" ,
70
- "--extra-config " ,
71
- "kubeadm.ignore-preflight-errors=SystemVerification" ,
70
+ "--disable-driver-mounts " ,
71
+ "--extra-config= kubeadm.ignore-preflight-errors=SystemVerification" ,
72
72
}},
73
73
}
74
74
0 commit comments