Replace github.com/coreos/etcd by go.etcd.io/etcd

Kubernetes-commit: 3b274fad2a719dc1fd0eaef6c55a0d344db10242
This commit is contained in:
Wenjia Zhang 2019-10-15 22:38:43 -07:00 committed by Kubernetes Publisher
parent fd43ea72ca
commit 41da2ced4c
14 changed files with 30 additions and 30 deletions

View File

@ -22,7 +22,7 @@ import (
"sync" "sync"
"time" "time"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
"k8s.io/klog" "k8s.io/klog"
) )

View File

@ -20,9 +20,9 @@ import (
"context" "context"
"testing" "testing"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
etcdrpc "github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes" etcdrpc "go.etcd.io/etcd/etcdserver/api/v3rpc/rpctypes"
"github.com/coreos/etcd/integration" "go.etcd.io/etcd/integration"
) )
func TestCompact(t *testing.T) { func TestCompact(t *testing.T) {

View File

@ -19,7 +19,7 @@ package etcd3
import ( import (
"k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/errors"
etcdrpc "github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes" etcdrpc "go.etcd.io/etcd/etcdserver/api/v3rpc/rpctypes"
utilruntime "k8s.io/apimachinery/pkg/util/runtime" utilruntime "k8s.io/apimachinery/pkg/util/runtime"
) )

View File

@ -18,8 +18,8 @@ package etcd3
import ( import (
"fmt" "fmt"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
"github.com/coreos/etcd/mvcc/mvccpb" "go.etcd.io/etcd/mvcc/mvccpb"
) )
type event struct { type event struct {

View File

@ -17,8 +17,8 @@ limitations under the License.
package etcd3 package etcd3
import ( import (
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
"github.com/coreos/etcd/mvcc/mvccpb" "go.etcd.io/etcd/mvcc/mvccpb"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"testing" "testing"

View File

@ -21,7 +21,7 @@ import (
"sync" "sync"
"time" "time"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
) )
// leaseManager is used to manage leases requested from etcd. If a new write // leaseManager is used to manage leases requested from etcd. If a new write

View File

@ -19,7 +19,7 @@ package etcd3
import ( import (
"fmt" "fmt"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
"k8s.io/klog" "k8s.io/klog"
) )

View File

@ -28,7 +28,7 @@ import (
"strings" "strings"
"time" "time"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
apierrors "k8s.io/apimachinery/pkg/api/errors" apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/meta" "k8s.io/apimachinery/pkg/api/meta"

View File

@ -29,8 +29,8 @@ import (
"sync" "sync"
"testing" "testing"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
"github.com/coreos/etcd/integration" "go.etcd.io/etcd/integration"
"github.com/coreos/pkg/capnslog" "github.com/coreos/pkg/capnslog"
apitesting "k8s.io/apimachinery/pkg/api/apitesting" apitesting "k8s.io/apimachinery/pkg/api/apitesting"
apierrors "k8s.io/apimachinery/pkg/api/errors" apierrors "k8s.io/apimachinery/pkg/api/errors"

View File

@ -33,15 +33,15 @@ import (
"context" "context"
etcd "github.com/coreos/etcd/client" etcd "go.etcd.io/etcd/client"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
"github.com/coreos/etcd/etcdserver" "go.etcd.io/etcd/etcdserver"
"github.com/coreos/etcd/etcdserver/api/etcdhttp" "go.etcd.io/etcd/etcdserver/api/etcdhttp"
"github.com/coreos/etcd/etcdserver/api/v2http" "go.etcd.io/etcd/etcdserver/api/v2http"
"github.com/coreos/etcd/integration" "go.etcd.io/etcd/integration"
"github.com/coreos/etcd/pkg/testutil" "go.etcd.io/etcd/pkg/testutil"
"github.com/coreos/etcd/pkg/transport" "go.etcd.io/etcd/pkg/transport"
"github.com/coreos/etcd/pkg/types" "go.etcd.io/etcd/pkg/types"
"k8s.io/klog" "k8s.io/klog"
) )

View File

@ -31,7 +31,7 @@ import (
"k8s.io/apiserver/pkg/storage" "k8s.io/apiserver/pkg/storage"
"k8s.io/apiserver/pkg/storage/value" "k8s.io/apiserver/pkg/storage/value"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
"k8s.io/klog" "k8s.io/klog"
) )

View File

@ -24,8 +24,8 @@ import (
"testing" "testing"
"time" "time"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
"github.com/coreos/etcd/integration" "go.etcd.io/etcd/integration"
apitesting "k8s.io/apimachinery/pkg/api/apitesting" apitesting "k8s.io/apimachinery/pkg/api/apitesting"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

View File

@ -26,8 +26,8 @@ import (
"sync/atomic" "sync/atomic"
"time" "time"
"github.com/coreos/etcd/clientv3" "go.etcd.io/etcd/clientv3"
"github.com/coreos/etcd/pkg/transport" "go.etcd.io/etcd/pkg/transport"
grpcprom "github.com/grpc-ecosystem/go-grpc-prometheus" grpcprom "github.com/grpc-ecosystem/go-grpc-prometheus"
"google.golang.org/grpc" "google.golang.org/grpc"

View File

@ -24,8 +24,8 @@ import (
"path/filepath" "path/filepath"
"testing" "testing"
"github.com/coreos/etcd/integration" "go.etcd.io/etcd/integration"
"github.com/coreos/etcd/pkg/transport" "go.etcd.io/etcd/pkg/transport"
apitesting "k8s.io/apimachinery/pkg/api/apitesting" apitesting "k8s.io/apimachinery/pkg/api/apitesting"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"