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

	var list_service k8sService.ReplicationControllerService

	body, err := ioutil.ReadAll(request.Request.Body)
	if err != nil {
		response.WriteEntity("fail")
	}

	response.WriteEntity(list_service.UpdateReplicationController(rc_name, body))
	return
}