Merge pull request #5742 from yifan-gu/fix_runtime

kubelet.runtime: update the import path for volume.
pull/6/head
Dawn Chen 2015-03-20 16:18:36 -07:00
commit 67414e035b
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import (
"time" "time"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api" "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. // FakeRuntime is a fake container runtime for testing.

View File

@ -18,8 +18,8 @@ package container
import ( import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/api" "github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet/volume"
"github.com/GoogleCloudPlatform/kubernetes/pkg/types" "github.com/GoogleCloudPlatform/kubernetes/pkg/types"
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume"
) )
// Runtime interface defines the interfaces that should be implemented // Runtime interface defines the interfaces that should be implemented