From b147f2096f867418066e2d34d276fa74f17b0948 Mon Sep 17 00:00:00 2001 From: Joel Rebello Date: Wed, 4 Sep 2024 14:52:57 +0200 Subject: [PATCH] api/conditions: update comment for clarity --- pkg/api/v1/conditions/routes/handlers.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkg/api/v1/conditions/routes/handlers.go b/pkg/api/v1/conditions/routes/handlers.go index 1d53f3e1..52c33adf 100644 --- a/pkg/api/v1/conditions/routes/handlers.go +++ b/pkg/api/v1/conditions/routes/handlers.go @@ -480,8 +480,10 @@ func (r *Routes) firmwareInstallComposite( Conditions: []*rctypes.Condition{}, } - // under feature flag until this is confirmed to be working as expected - // - if set - include require inband - if firmwares shares that requirement + // Under feature flag until this is confirmed to be working as expected + // + // with this feature flag set, the pxeBoot, inband conditions are published, + // if the component firmware indicates it should be installed inband if os.Getenv("CONDITION_API_FEATURE_INBAND_FIRMWARE") != "" { for idx := range fwset.ComponentFirmware { if booleanIsTrue(fwset.ComponentFirmware[idx].InstallInband) {