Add node e2e test CI.

Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
Lantao Liu
2017-08-20 07:36:55 +00:00
parent dcc3cb2a05
commit c05a7e74ee
12 changed files with 166 additions and 79 deletions

View File

@@ -28,10 +28,10 @@ import (
// TODO(random-liu): Add image list filters after CRI defines this more clear, and kubelet
// actually needs it.
func (c *criContainerdService) ListImages(ctx context.Context, r *runtime.ListImagesRequest) (retRes *runtime.ListImagesResponse, retErr error) {
glog.V(4).Infof("ListImages with filter %+v", r.GetFilter())
glog.V(5).Infof("ListImages with filter %+v", r.GetFilter())
defer func() {
if retErr == nil {
glog.V(4).Infof("ListImages returns image list %+v", retRes.GetImages())
glog.V(5).Infof("ListImages returns image list %+v", retRes.GetImages())
}
}()