Merge pull request #111642 from harche/evented_pleg_cri_changes

Update CRI API to support Evented PLEG
This commit is contained in:
Kubernetes Prow Robot
2022-08-02 13:59:16 -07:00
committed by GitHub
7 changed files with 981 additions and 366 deletions

View File

@@ -332,3 +332,7 @@ func (f *RemoteRuntime) CheckpointContainer(ctx context.Context, req *kubeapi.Ch
return &kubeapi.CheckpointContainerResponse{}, nil
}
func (f *RemoteRuntime) GetContainerEvents(req *kubeapi.GetEventsRequest, ces kubeapi.RuntimeService_GetContainerEventsServer) error {
return nil
}

View File

@@ -1225,3 +1225,7 @@ func (r *remoteRuntimeService) CheckpointContainer(options *runtimeapi.Checkpoin
return nil
}
func (r *remoteRuntimeService) GetContainerEvents(containerEventsCh chan *runtimeapi.ContainerEventResponse) error {
return nil
}