Пример #1
0
func (c *FakePods) GetLogs(name string, opts *api.PodLogOptions) *client.Request {
	action := core.GenericActionImpl{}
	action.Verb = "get"
	action.Namespace = c.ns
	action.Resource = "pod"
	action.Subresource = "logs"
	action.Value = opts

	_, _ = c.Fake.Invokes(action, &api.Pod{})
	return &client.Request{}
}