From 3b4685ef6c6f9cfb08662b97d715baace88e27cc Mon Sep 17 00:00:00 2001 From: Yifan Gu Date: Fri, 20 Mar 2015 16:05:09 -0700 Subject: [PATCH] kubelet.runtime: update the import path for volume. --- pkg/kubelet/container/fake_runtime.go | 2 +- pkg/kubelet/container/runtime.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/container/fake_runtime.go b/pkg/kubelet/container/fake_runtime.go index ffdf4c8c92d..76c49b7e92c 100644 --- a/pkg/kubelet/container/fake_runtime.go +++ b/pkg/kubelet/container/fake_runtime.go @@ -23,7 +23,7 @@ import ( "time" "github.com/GoogleCloudPlatform/kubernetes/pkg/api" - "github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet/volume" + "github.com/GoogleCloudPlatform/kubernetes/pkg/volume" ) // FakeRuntime is a fake container runtime for testing. diff --git a/pkg/kubelet/container/runtime.go b/pkg/kubelet/container/runtime.go index c62a5a52e79..15ddfa70fc8 100644 --- a/pkg/kubelet/container/runtime.go +++ b/pkg/kubelet/container/runtime.go @@ -18,8 +18,8 @@ package container import ( "github.com/GoogleCloudPlatform/kubernetes/pkg/api" - "github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet/volume" "github.com/GoogleCloudPlatform/kubernetes/pkg/types" + "github.com/GoogleCloudPlatform/kubernetes/pkg/volume" ) // Runtime interface defines the interfaces that should be implemented