Closed synthe102 closed 6 months ago
Attention: Patch coverage is 0%
with 3 lines
in your changes are missing coverage. Please review.
Project coverage is 47.91%. Comparing base (
736ddc0
) to head (7c7a25d
).
Files | Patch % | Lines |
---|---|---|
controller/client.go | 0.00% | 3 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Description
This pull request add support for HTTPS connections with Intel AMT BMCs. Currently
bmclib
useshttp
as a default connection scheme which is not supported on modern AMT platforms (like the Minisforum MS-01 that I used to test this change), and there is no way to set the connection scheme to https with the currentMachine
API.Why is this needed
This is needed to add support for AMT hosts that only support HTTPS connection scheme.
Fixes: #
How Has This Been Tested?
These changes were tested against a Minisforum MS-01 PC that only supports HTTPS AMT. A
Machine
was created that couldn't fetch the powerstate since the authentication would fail because the client would default tohttp
. With these changes,rufio
can successfully interact with the AMT BMC on the computer using https scheme.How are existing users impacted? What migration steps/scripts do we need?
No migration is needed, the new
hostScheme
field defaults tohttp
which keeps the default behavior.Checklist:
I have: