diff --git a/pkg/asset/cluster/cluster.go b/pkg/asset/cluster/cluster.go index b6e3823631..a933d1bb9f 100644 --- a/pkg/asset/cluster/cluster.go +++ b/pkg/asset/cluster/cluster.go @@ -67,6 +67,10 @@ func (c *Cluster) Generate(parents asset.Parents) (err error) { return errors.New("cluster cannot be created with platform set to 'none'") } + if installConfig.Config.BootstrapInPlace != nil { + return errors.New("cluster cannot be created with bootstrapInPlace set") + } + platform := installConfig.Config.Platform.Name() stages := platformstages.StagesForPlatform(platform)