Nir Soffer
Nir Soffer
### Description Using the following yaml disabling port forwarding, I see that ports are forwarded. Same yaml works with lima 1.2.1. The expected behavior is seeing only ssh port forwarding....
### Description `limactl list` may log unneeded warnings if running while an instance is created and started by another program. The command already shows the status of the instance as...
Buildroot seems to prefer binary releases so we need to keep both source and binary releases hashes. The tool ensures that for we have all the hashes for the specified...
We define GO_HASH_FILE= to override buildroot go.hash file: ```Makefile # the go version on the line below is for the ISO GOLANG_OPTIONS = GOWORK=off GO_VERSION=1.23.4 GO_HASH_FILE=$(PWD)/deploy/iso/minikube-iso/go.hash BUILDROOT_OPTIONS = BR2_EXTERNAL=../../deploy/iso/minikube-iso $(GOLANG_OPTIONS)...
nerdctl 2.1.x does not support containerd 2.2.x, so we should update containerd with nerdctl, or update containerd after nerdctl is updated. - https://github.com/containerd/nerdctl/releases/tag/v2.2.0 - This release of nerdctl is expected...
Some tests use multiple kubernetes versions: ```go versions := []string{ constants.OldestKubernetesVersion, constants.DefaultKubernetesVersion, constants.NewestKubernetesVersion, } ``` Currently DefaultKubernetesVersion and constants.NewestKubernetesVersion are the same ("1.34.0") so we run the same test twice....
### What Happened? Looking at many failures for https://github.com/kubernetes/minikube/pull/20720: - [Docker_Linux_containerd_arm64](https://storage.googleapis.com/minikube-builds/logs/20720/39516/Docker_Linux_containerd_arm64.html) **65 errors** - [Docker_Linux_crio](https://storage.googleapis.com/minikube-builds/logs/20720/39516/Docker_Linux_crio.html) **91 errors** - [Docker_Linux_crio_arm64](https://storage.googleapis.com/minikube-builds/logs/20720/39516/Docker_Linux_crio_arm64.html) 0 errors - [Docker_Linux_docker_arm64](https://storage.googleapis.com/minikube-builds/logs/20720/39516/Docker_Linux_docker_arm64.html) 0 errors - [KVM_Linux_containerd](https://storage.googleapis.com/minikube-builds/logs/20720/39516/KVM_Linux_containerd.html) **160 errors** -...
Since we removed gluster, we don't need the legacy python2 dependency and we can support building on more modern distros like Fedora. Currently the x86_64 build works on Fedora 43...
Since we removed gluster, we don't need the legacy python2 dependency and we can support building on more modern distros like Fedora. Building the aarch64 version on Fedora 42 and...
Some tests like mount_start_test.go use build tags: ``` //go:build integration ``` This breaks editor language server (e.g. Zed, Cursor, vscode) since they think the file is not compiled. Maybe it...