Merge pull request #8173 from bpradipt/gpu-fix

CC | config: Enable guestHook for remote hyp
This commit is contained in:
Steve Horsman 2023-10-10 17:15:02 +01:00 committed by GitHub
commit 64392c9a87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1154,6 +1154,8 @@ func newRemoteHypervisorConfig(h hypervisor) (vc.HypervisorConfig, error) {
// 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
BlockDeviceDriver: "dummy", BlockDeviceDriver: "dummy",
EnableAnnotations: h.EnableAnnotations, EnableAnnotations: h.EnableAnnotations,
// Add GuestHookPath
GuestHookPath: h.guestHookPath(),
}, nil }, nil
} }