Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetKubeletContainerLogs (0.26 sec)

  1. pkg/kubelet/server/server.go

    	CheckpointContainer(ctx context.Context, podUID types.UID, podFullName, containerName string, options *runtimeapi.CheckpointContainerRequest) error
    	GetKubeletContainerLogs(ctx context.Context, podFullName, containerName string, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) error
    	ServeLogs(w http.ResponseWriter, req *http.Request)
    	ResyncInterval() time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    	return fk.runningPodsFunc(ctx)
    }
    
    func (fk *fakeKubelet) ServeLogs(w http.ResponseWriter, req *http.Request) {
    	fk.logFunc(w, req)
    }
    
    func (fk *fakeKubelet) GetKubeletContainerLogs(ctx context.Context, podFullName, containerName string, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) error {
    	return fk.containerLogsFunc(ctx, podFullName, containerName, logOptions, stdout, stderr)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	}
    
    	return kubecontainer.ParseContainerID(cID), nil
    }
    
    // GetKubeletContainerLogs returns logs from the container
    // TODO: this method is returning logs of random container attempts, when it should be returning the most recent attempt
    // or all of them.
    func (kl *Kubelet) GetKubeletContainerLogs(ctx context.Context, podFullName, containerName string, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top