mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-07-17 17:02:42 +00:00
Merge pull request #10250 from squarti/remote-machine-type-default
runtime: fix bad default machine_type for remote hypervisor
This commit is contained in:
commit
f66e8c41a1
@ -1341,13 +1341,12 @@ func newStratovirtHypervisorConfig(h hypervisor) (vc.HypervisorConfig, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func newRemoteHypervisorConfig(h hypervisor) (vc.HypervisorConfig, error) {
|
func newRemoteHypervisorConfig(h hypervisor) (vc.HypervisorConfig, error) {
|
||||||
machineType := h.machineType()
|
|
||||||
|
|
||||||
return vc.HypervisorConfig{
|
return vc.HypervisorConfig{
|
||||||
RemoteHypervisorSocket: h.getRemoteHypervisorSocket(),
|
RemoteHypervisorSocket: h.getRemoteHypervisorSocket(),
|
||||||
RemoteHypervisorTimeout: h.getRemoteHypervisorTimeout(),
|
RemoteHypervisorTimeout: h.getRemoteHypervisorTimeout(),
|
||||||
DisableGuestSeLinux: true, // The remote hypervisor has a different guest, so Guest SELinux config doesn't work
|
DisableGuestSeLinux: true, // The remote hypervisor has a different guest, so Guest SELinux config doesn't work
|
||||||
HypervisorMachineType: machineType,
|
HypervisorMachineType: h.MachineType,
|
||||||
SharedFS: config.NoSharedFS,
|
SharedFS: config.NoSharedFS,
|
||||||
|
|
||||||
// No valid value so avoid to append block device to list in kata_agent.appendDevices
|
// No valid value so avoid to append block device to list in kata_agent.appendDevices
|
||||||
|
Loading…
Reference in New Issue
Block a user