diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 9490ab92f4b..4a55d549b4e 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -5226,7 +5226,14 @@ var array1 = []; array1.push("&zoneId=" + args.context.zones[0].id); array1.push("&hypervisor=" + args.data.hypervisor); - array1.push("&clustertype=CloudManaged"); + + var clusterType; + if(args.data.hypervisor == "VMware") + clusterType="ExternalManaged"; + else + clusterType="CloudManaged"; + array1.push("&clustertype=" + clusterType); + array1.push("&podId=" + args.data.podId); var clusterName = args.data.name;