Beispiel #1
0
func (this *PodController) Get(request *restful.Request, response *restful.Response) {
	fmt.Println("[Get] Pod")
	pod_name := request.PathParameter("name")
	fmt.Print(pod_name)

	var _pod_service k8sService.PodService
	response.WriteEntity(_pod_service.GetPod(pod_name))
	return
}