File tree Expand file tree Collapse file tree 16 files changed +29
-29
lines changed Expand file tree Collapse file tree 16 files changed +29
-29
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
FROM golang:1.10.1-alpine3.7 as builder
16
- WORKDIR /go/src/github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver
16
+ WORKDIR /go/src/sigs.k8s.io /gcp-compute-persistent-disk-csi-driver
17
17
ADD . .
18
18
RUN CGO_ENABLED=0 go build -a -ldflags '-extldflags "-static"' -o bin/gce-pd-csi-driver ./cmd/
19
19
20
20
FROM alpine:3.7
21
- COPY --from=builder /go/src/github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver/bin/gce-pd-csi-driver /gce-pd-csi-driver
21
+ COPY --from=builder /go/src/sigs.k8s.io /gcp-compute-persistent-disk-csi-driver/bin/gce-pd-csi-driver /gce-pd-csi-driver
22
22
23
23
ENTRYPOINT ["/gce-pd-csi-driver" ]
Original file line number Diff line number Diff line change @@ -36,4 +36,4 @@ prod-push-container: prod-build-container
36
36
gcloud docker -- push $(PRODIMAGE ) :$(PRODVERSION )
37
37
38
38
test-sanity : gce-pd-driver
39
- go test -timeout 30s github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver/pkg/test -run ^TestSanity$
39
+ go test -timeout 30s sigs.k8s.io /gcp-compute-persistent-disk-csi-driver/pkg/test -run ^TestSanity$
Original file line number Diff line number Diff line change @@ -20,9 +20,9 @@ import (
20
20
21
21
"github.com/golang/glog"
22
22
23
- gce "github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver/pkg/gce-cloud-provider"
24
- driver "github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver/pkg/gce-csi-driver"
25
- mountmanager "github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver/pkg/mount-manager"
23
+ gce "sigs.k8s.io /gcp-compute-persistent-disk-csi-driver/pkg/gce-cloud-provider"
24
+ driver "sigs.k8s.io /gcp-compute-persistent-disk-csi-driver/pkg/gce-csi-driver"
25
+ mountmanager "sigs.k8s.io /gcp-compute-persistent-disk-csi-driver/pkg/mount-manager"
26
26
)
27
27
28
28
func init () {
Original file line number Diff line number Diff line change 3
3
set -o nounset
4
4
set -o errexit
5
5
6
- readonly PKGDIR=" ${GOPATH} /src/github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver"
6
+ readonly PKGDIR=" ${GOPATH} /src/sigs.k8s.io /gcp-compute-persistent-disk-csi-driver"
7
7
readonly KUBEDEPLOY=" ${PKGDIR} /deploy/kubernetes"
8
8
9
9
kubectl delete -f " ${KUBEDEPLOY} /node.yaml" --ignore-not-found
Original file line number Diff line number Diff line change 3
3
set -o nounset
4
4
set -o errexit
5
5
6
- readonly PKGDIR=" ${GOPATH} /src/github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver"
6
+ readonly PKGDIR=" ${GOPATH} /src/sigs.k8s.io /gcp-compute-persistent-disk-csi-driver"
7
7
readonly KUBEDEPLOY=" ${PKGDIR} /deploy/kubernetes"
8
8
9
9
if ! kubectl get secret cloud-sa;
Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ import (
19
19
"strings"
20
20
21
21
"github.com/golang/glog"
22
- "github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pkg/utils"
23
22
"golang.org/x/net/context"
24
23
compute "google.golang.org/api/compute/v1"
25
24
"google.golang.org/grpc/codes"
26
25
"google.golang.org/grpc/status"
26
+ "sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/utils"
27
27
)
28
28
29
29
type FakeCloudProvider struct {
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ import (
20
20
"time"
21
21
22
22
"github.com/golang/glog"
23
- "github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pkg/utils"
24
23
"golang.org/x/net/context"
25
24
compute "google.golang.org/api/compute/v1"
26
25
"google.golang.org/grpc/codes"
27
26
"google.golang.org/grpc/status"
28
27
"k8s.io/apimachinery/pkg/util/wait"
28
+ "sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/utils"
29
29
)
30
30
31
31
type GCECompute interface {
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ import (
20
20
21
21
csi "github.com/container-storage-interface/spec/lib/go/csi/v0"
22
22
"github.com/golang/glog"
23
- gce "github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pkg/gce-cloud-provider"
24
- utils "github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pkg/utils"
25
23
"golang.org/x/net/context"
26
24
compute "google.golang.org/api/compute/v1"
27
25
"google.golang.org/grpc/codes"
28
26
"google.golang.org/grpc/status"
27
+ gce "sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/gce-cloud-provider"
28
+ utils "sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/utils"
29
29
)
30
30
31
31
// TODO: Add noisy glog.V(5).Infof() EVERYWHERE
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import (
22
22
"google.golang.org/grpc/status"
23
23
24
24
csi "github.com/container-storage-interface/spec/lib/go/csi/v0"
25
- gce "github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver/pkg/gce-cloud-provider"
26
- utils "github.com/kubernetes- sigs/gcp-compute-persistent-disk-csi-driver/pkg/utils"
25
+ gce "sigs.k8s.io /gcp-compute-persistent-disk-csi-driver/pkg/gce-cloud-provider"
26
+ utils "sigs.k8s.io /gcp-compute-persistent-disk-csi-driver/pkg/utils"
27
27
)
28
28
29
29
const (
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ import (
19
19
20
20
csi "github.com/container-storage-interface/spec/lib/go/csi/v0"
21
21
"github.com/golang/glog"
22
- gce "github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pkg/gce-cloud-provider"
23
- mountmanager "github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/pkg/mount-manager"
24
22
"google.golang.org/grpc/codes"
25
23
"google.golang.org/grpc/status"
24
+ gce "sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/gce-cloud-provider"
25
+ mountmanager "sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/mount-manager"
26
26
)
27
27
28
28
type GCEDriver struct {
You can’t perform that action at this time.
0 commit comments