We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8566e commit 156799fCopy full SHA for 156799f
1 file changed
environment/vm/lima/daemon.go
@@ -14,8 +14,8 @@ import (
14
)
15
16
func (l *limaVM) startDaemon(ctx context.Context, conf config.Config) (context.Context, error) {
17
- // vmnet is used by QEMU or bridged mode
18
- useVmnet := conf.VMType == limaconfig.QEMU || conf.Network.Mode == "bridged"
+ // vmnet is used by QEMU, Krunkit, or bridged mode
+ useVmnet := conf.VMType == limaconfig.QEMU || conf.VMType == limaconfig.Krunkit || conf.Network.Mode == "bridged"
19
20
// network daemon is only needed for vmnet
21
conf.Network.Address = conf.Network.Address && useVmnet
0 commit comments