diff --git a/pkg/types/clustermetadata.go b/pkg/types/clustermetadata.go index 7382625b2f8..5c9a7860f8f 100644 --- a/pkg/types/clustermetadata.go +++ b/pkg/types/clustermetadata.go @@ -27,6 +27,9 @@ func (cpm *ClusterPlatformMetadata) Platform() string { if cpm.Libvirt != nil { return "libvirt" } + if cpm.OpenStack != nil { + return "openstack" + } return "" }