@RequestMapping(
     value = "/cluster/{clusterName}",
     method = RequestMethod.GET,
     produces = "application/json")
 @ResponseBody
 public ClusterRead getCluster(@PathVariable("clusterName") final String clusterName) {
   return clusterMgr.getClusterByName(clusterName);
 }