Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Make goimports happy
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-utinski committed Apr 10, 2019
1 parent cda1713 commit 83e16f5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion docker/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import (

dockerclient "github.com/fsouza/go-dockerclient"
"github.com/golang/mock/gomock"
_ "github.com/golang/mock/mockgen" // Force godep to pick it up
"github.com/hpcloud/fissile/util"
"github.com/pborman/uuid"
"github.com/stretchr/testify/assert"
Expand Down
2 changes: 1 addition & 1 deletion kube/pod.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/hpcloud/fissile/model"

"k8s.io/client-go/pkg/api/resource"
"k8s.io/client-go/pkg/api/v1"
v1 "k8s.io/client-go/pkg/api/v1"
"k8s.io/client-go/pkg/util/intstr"
)

Expand Down
2 changes: 1 addition & 1 deletion kube/pod_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/hpcloud/fissile/model"
"github.com/stretchr/testify/assert"
"k8s.io/client-go/pkg/api/resource"
"k8s.io/client-go/pkg/api/v1"
v1 "k8s.io/client-go/pkg/api/v1"
"k8s.io/client-go/pkg/util/intstr"
)

Expand Down
2 changes: 1 addition & 1 deletion kube/stateful_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/hpcloud/fissile/model"
"k8s.io/client-go/pkg/api/resource"
meta "k8s.io/client-go/pkg/api/unversioned"
"k8s.io/client-go/pkg/api/v1"
v1 "k8s.io/client-go/pkg/api/v1"
v1beta1 "k8s.io/client-go/pkg/apis/apps/v1beta1"
"k8s.io/client-go/pkg/runtime"
)
Expand Down
2 changes: 1 addition & 1 deletion kube/writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"k8s.io/client-go/pkg/runtime"
"k8s.io/client-go/pkg/runtime/serializer/json"
"k8s.io/client-go/tools/clientcmd/api"
"k8s.io/client-go/tools/clientcmd/api/v1"
v1 "k8s.io/client-go/tools/clientcmd/api/v1"
)

const (
Expand Down

0 comments on commit 83e16f5

Please sign in to comment.