From 73749aaaed010461a75a77dc46221a538c8adf02 Mon Sep 17 00:00:00 2001 From: Volker Theile Date: Tue, 13 Aug 2024 12:29:17 +0200 Subject: [PATCH] Some system settings are not allowed during the IPXE installation Relates to: https://github.com/harvester/harvester/issues/6329 Signed-off-by: Volker Theile (cherry picked from commit 601bee799f010df8ef0936122a35136a9bc325c5) --- pkg/config/config.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkg/config/config.go b/pkg/config/config.go index 58b15995b..0fbb7623e 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -47,6 +47,7 @@ func GetSystemSettingsAllowList() []string { "ui-index", "ui-path", "ui-source", + "ui-plugin-index", "volume-snapshot-class", "backup-target", "upgradable-versions", @@ -59,13 +60,21 @@ func GetSystemSettingsAllowList() []string { "support-bundle-image", "support-bundle-namespaces", "support-bundle-timeout", + "support-bundle-expiration", + "support-bundle-node-collection-timeout", "default-storage-class", "http-proxy", "vm-force-reset-policy", "overcommit-config", "vip-pools", "auto-disk-provision-paths", + "csi-driver-config", "containerd-registry", + "storage-network", + "default-vm-termination-grace-period-seconds", + "auto-rotate-rke2-certs", + "kubeconfig-default-token-ttl-minutes", + "harvester-csi-ccm-versions", "ntp-servers", } }