You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// `crio` is accepted as an alternative spelling to `cri-o`
1286
1286
validOptions=append(validOptions, constants.CRIO)
1287
1287
1288
1288
varvalidRuntimebool
1289
1289
for_, option:=rangevalidOptions {
1290
-
ifruntime==option {
1290
+
ifrtime==option {
1291
1291
validRuntime=true
1292
1292
}
1293
1293
1294
1294
// Convert `cri-o` to `crio` as the K8s config uses the `crio` spelling
1295
-
ifruntime=="cri-o" {
1295
+
ifrtime=="cri-o" {
1296
1296
viper.Set(containerRuntime, constants.CRIO)
1297
1297
}
1298
+
1299
+
}
1300
+
1301
+
if (rtime=="crio"||rtime=="cri-o") && (strings.HasPrefix(runtime.GOARCH, "ppc64") ||detect.RuntimeArch() =="arm"||strings.HasPrefix(detect.RuntimeArch(), "arm/")) {
1302
+
returnerrors.Errorf("The %s runtime is not compatible with the %s architecture. See https://github.com/cri-o/cri-o/issues/2467 for more details.", rtime, runtime.GOARCH)
Copy file name to clipboardExpand all lines: site/content/en/docs/commands/start.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ minikube start [flags]
26
26
--apiserver-names strings A set of apiserver names which are used in the generated certificate for kubernetes. This can be used if you want to make the apiserver available from outside the machine
27
27
--apiserver-port int The apiserver listening port (default 8443)
28
28
--auto-update-drivers If set, automatically updates drivers to the latest version. Defaults to true. (default true)
29
-
--base-image string The base image to use for docker/podman drivers. Intended for local development. (default "gcr.io/k8s-minikube/kicbase-builds:v0.0.28-1638824847-13104@sha256:a90edc66cae8cca35685dce007b915405a2ba91d903f99f7d8f79cd9d1faabab")
29
+
--base-image string The base image to use for docker/podman drivers. Intended for local development. (default "gcr.io/k8s-minikube/kicbase-builds:v0.0.28-1639515145-13124@sha256:50a7fba584fcd78435535ec8407fa75d58db1612175b13fd473300d522f7ac80")
30
30
--cache-images If true, cache docker images for the current bootstrapper and load them into the machine. Always false with --driver=none. (default true)
31
31
--cert-expiration duration Duration until minikube certificate expiration, defaults to three years (26280h). (default 26280h0m0s)
32
32
--cni string CNI plug-in to use. Valid options: auto, bridge, calico, cilium, flannel, kindnet, or path to a CNI manifest (default: auto)
0 commit comments