Skip to content

Commit 2936edc

Browse files
Merge pull request #9763 from karmab/upi_fix
OCPBUGS-58216: allow to deploy single nodes with UPI
2 parents bdf5502 + 34c9fdd commit 2936edc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/asset/machines/master.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -985,10 +985,10 @@ func IsFencingCredentialsFile(filepath string) (bool, error) {
985985
// a platform.
986986
func supportedSingleNodePlatform(bootstrapInPlace bool, platformName string) bool {
987987
switch platformName {
988-
case awstypes.Name, gcptypes.Name, azuretypes.Name, powervstypes.Name:
988+
case awstypes.Name, gcptypes.Name, azuretypes.Name, powervstypes.Name, nonetypes.Name:
989989
// Single node OpenShift installations supported without `bootstrapInPlace`
990990
return true
991-
case nonetypes.Name, externaltypes.Name:
991+
case externaltypes.Name:
992992
// Single node OpenShift installations supported with `bootstrapInPlace`
993993
return bootstrapInPlace
994994
default:

0 commit comments

Comments
 (0)