From ae65037083abdcdce0e89698e5b583f3c16eb1e8 Mon Sep 17 00:00:00 2001 From: Jack Yu Date: Fri, 5 Jun 2026 11:18:14 +0800 Subject: [PATCH] feat: add disable resource pooling checkbox on pcidevice page (#902) Signed-off-by: Jack Yu --- pkg/harvester/config/feature-flags.js | 1 + pkg/harvester/dialog/EnablePciPassthrough.vue | 35 +++++++++++++++---- pkg/harvester/l10n/en-us.yaml | 2 ++ 3 files changed, 32 insertions(+), 6 deletions(-) diff --git a/pkg/harvester/config/feature-flags.js b/pkg/harvester/config/feature-flags.js index e55b4726..7b4aee6a 100644 --- a/pkg/harvester/config/feature-flags.js +++ b/pkg/harvester/config/feature-flags.js @@ -71,6 +71,7 @@ const FEATURE_FLAGS = { 'v1.8.1': [], 'v1.9.0': [ 'supportFilesystem', + 'disableResourcePooling', ], }; diff --git a/pkg/harvester/dialog/EnablePciPassthrough.vue b/pkg/harvester/dialog/EnablePciPassthrough.vue index 733099a7..feb108a8 100644 --- a/pkg/harvester/dialog/EnablePciPassthrough.vue +++ b/pkg/harvester/dialog/EnablePciPassthrough.vue @@ -1,6 +1,8 @@