You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if config.ENV_DATA.get("platform") != constants.BAREMETAL_PLATFORM:
```
and changed to:
```
if config.ENV_DATA.get("platform") in [
constants.BAREMETAL_PLATFORM,
constants.HCI_BAREMETAL,
]:
```
There should be `not in`. Which is fixed in this commit.
The text was updated successfully, but these errors were encountered:
petr-balogh
changed the title
4.16 bm deployment via UI is broken
4.16 BM deployment via UI is broken
Aug 2, 2024
This PR: #10120
Broke original condition:
The text was updated successfully, but these errors were encountered: