func (this *ReplicationControllerController) Get(request *restful.Request, response *restful.Response) {
	fmt.Println("[Get] ReplicationController")
	rc_name := request.PathParameter("name")

	var list_service k8sService.ReplicationControllerService

	response.WriteEntity(list_service.GetReplicationController(rc_name))
	return
}