diff --git a/pkg/cluster/spec/spec.go b/pkg/cluster/spec/spec.go index 5f97465476..735257fc16 100644 --- a/pkg/cluster/spec/spec.go +++ b/pkg/cluster/spec/spec.go @@ -770,7 +770,11 @@ func AlertManagerEndpoints(alertmanager []*AlertmanagerSpec, user string, enable // FillHostArch fills the topology with the given host->arch func (s *Specification) FillHostArch(hostArch map[string]string) error { - return FillHostArch(s, hostArch) + if err := FillHostArch(s, hostArch); err != nil { + return err + } + + return s.platformConflictsDetect() } // FillHostArch fills the topology with the given host->arch