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 29341ee commit c7885c6Copy full SHA for c7885c6
pkg/asset/agent/installconfig.go
@@ -309,6 +309,11 @@ func warnUnusedConfig(installConfig *types.InstallConfig) {
309
logrus.Warnf(fmt.Sprintf("%s is ignored", fieldPath))
310
}
311
312
+ if installConfig.FeatureSet != configv1.Default {
313
+ fieldPath := field.NewPath("FeatureSet")
314
+ logrus.Warnf(fmt.Sprintf("%s: %s is ignored", fieldPath, installConfig.FeatureSet))
315
+ }
316
+
317
switch installConfig.Platform.Name() {
318
319
case baremetal.Name:
0 commit comments