Vasiliy Ulyanov
Vasiliy Ulyanov
> Because I cant run aa-disable: You need to install `apparmor-utils` package (not 100% sure if its called like that in Debian though) BUT... > You can add /usr/libexec/qemu-kvm PUx...
I am not aware if someone is working on that ATM. But for sure, Apparmor support in KubeVirt will definitely bring a lot of value to the project. Contributions are...
I think this has already been fixed. You probably need to update from `v0.50.0` to some recent version.
I mean this https://github.com/kubevirt/kubevirt/pull/6754. I am just not sure if eventually it landed in `v0.50.0`.
Same as in https://github.com/kubevirt/kubevirt/issues/8478 Hi @feitnomore, this is a known issue that currently KubeVirt does not work with Kubernetes `1.25` because of the device plugin registration failure. There is already...
@nvinnakota10, well, the fix for the device plugin issue is included in 0.58.0. AFAIK, KubeVirt is not yet tested against k8s 1.25 therefore its probably not 'officially' supported yet. But...
> Can you please let us know when can we expect the release that supports k8s 1.25. TBH, I do not know. Currently, the PRs are not tested against 1.25....
> I found https://cloudinit.readthedocs.io/en/latest/topics/modules.html#set-hostname which seems to indicate that this is not intended to replace DHCP offerings, just to help with DHCP/DNS setup. Yep, this is an interesting finding. I...
Interesting finding :+1: I wasn't aware about the different behavior of `os.IsNotExist` vs `errors.Is(err, os.ErrNotExist)`. I grep'ed the sources and found a couple of more such checks: https://github.com/kubevirt/kubevirt/blob/b862288214babf12b06ce808efaf2adbf592e4a1/pkg/virt-handler/non-root.go#L163-L175 and also...
> I'm wondering if it would make sense to change all the `os.IsNotExist(err)` to `errors.Is(err, os.ErrNotExist)` in the rest of the code too. @vasiliy-ul @iholder-redhat wdyt? +1. I think it...