diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 79a9bac..8b6589c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,5 @@
 image:
-  name: yandex-cloud/csi-s3:test
+  name: yandex-cloud/k8s-csi-s3:test
   entrypoint: [""]
 
 variables:
@@ -21,4 +21,4 @@ test:
   services:
     - docker:dind
   script:
-    - docker run --rm --privileged -v $(pwd):/app --device /dev/fuse yandex-cloud/csi-s3:test
+    - docker run --rm --privileged -v $(pwd):/app --device /dev/fuse yandex-cloud/k8s-csi-s3:test
diff --git a/AUTHORS b/AUTHORS
index ef5da64..bd3c01d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,4 +1,4 @@
-The following authors have created the source code of "csi-s3" published and distributed by YANDEX LLC as the owner:
+The following authors have created the source code of "k8s-csi-s3" published and distributed by YANDEX LLC as the owner:
 
 Vitaliy Filippov  vitaliff@yandex-team.ru
 Cyrill Troxler    cyrilltroxler@gmail.com
diff --git a/README.md b/README.md
index 60b7c29..acd6ecc 100644
--- a/README.md
+++ b/README.md
@@ -156,7 +156,7 @@ kubectl logs -l app=csi-s3 -c csi-s3
 This project can be built like any other go application.
 
 ```bash
-go get -u github.com/yandex-cloud/csi-s3
+go get -u github.com/yandex-cloud/k8s-csi-s3
 ```
 
 ### Build executable
diff --git a/cmd/s3driver/main.go b/cmd/s3driver/main.go
index 7da9506..e7bd579 100644
--- a/cmd/s3driver/main.go
+++ b/cmd/s3driver/main.go
@@ -21,7 +21,7 @@ import (
 	"log"
 	"os"
 
-	"github.com/yandex-cloud/csi-s3/pkg/driver"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/driver"
 )
 
 func init() {
diff --git a/go.mod b/go.mod
index 1272ab5..d10aab1 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/yandex-cloud/csi-s3
+module github.com/yandex-cloud/k8s-csi-s3
 
 go 1.15
 
diff --git a/pkg/driver/controllerserver.go b/pkg/driver/controllerserver.go
index 7f2e2a1..144b2f3 100644
--- a/pkg/driver/controllerserver.go
+++ b/pkg/driver/controllerserver.go
@@ -24,8 +24,8 @@ import (
 	"path"
 	"strings"
 
-	"github.com/yandex-cloud/csi-s3/pkg/mounter"
-	"github.com/yandex-cloud/csi-s3/pkg/s3"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/mounter"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/s3"
 	"github.com/golang/glog"
 	"golang.org/x/net/context"
 	"google.golang.org/grpc/codes"
diff --git a/pkg/driver/driver_suite_test.go b/pkg/driver/driver_suite_test.go
index 74ce46e..cb17a15 100644
--- a/pkg/driver/driver_suite_test.go
+++ b/pkg/driver/driver_suite_test.go
@@ -4,8 +4,8 @@ import (
 	"log"
 	"os"
 
-	"github.com/yandex-cloud/csi-s3/pkg/driver"
-	"github.com/yandex-cloud/csi-s3/pkg/mounter"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/driver"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/mounter"
 	. "github.com/onsi/ginkgo"
 	. "github.com/onsi/gomega"
 
diff --git a/pkg/driver/nodeserver.go b/pkg/driver/nodeserver.go
index a727f60..6c21544 100644
--- a/pkg/driver/nodeserver.go
+++ b/pkg/driver/nodeserver.go
@@ -22,8 +22,8 @@ import (
 	"regexp"
 	"strconv"
 
-	"github.com/yandex-cloud/csi-s3/pkg/mounter"
-	"github.com/yandex-cloud/csi-s3/pkg/s3"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/mounter"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/s3"
 	"github.com/golang/glog"
 	"golang.org/x/net/context"
 
diff --git a/pkg/mounter/geesefs.go b/pkg/mounter/geesefs.go
index f3e6e53..8a649ac 100644
--- a/pkg/mounter/geesefs.go
+++ b/pkg/mounter/geesefs.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"os"
 
-	"github.com/yandex-cloud/csi-s3/pkg/s3"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/s3"
 )
 
 const (
diff --git a/pkg/mounter/mounter.go b/pkg/mounter/mounter.go
index 984ef2b..e36facb 100644
--- a/pkg/mounter/mounter.go
+++ b/pkg/mounter/mounter.go
@@ -11,7 +11,7 @@ import (
 	"syscall"
 	"time"
 
-	"github.com/yandex-cloud/csi-s3/pkg/s3"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/s3"
 	"github.com/golang/glog"
 	"github.com/mitchellh/go-ps"
 	"k8s.io/kubernetes/pkg/util/mount"
diff --git a/pkg/mounter/rclone.go b/pkg/mounter/rclone.go
index 3f46649..ebcede0 100644
--- a/pkg/mounter/rclone.go
+++ b/pkg/mounter/rclone.go
@@ -5,7 +5,7 @@ import (
 	"os"
 	"path"
 
-	"github.com/yandex-cloud/csi-s3/pkg/s3"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/s3"
 )
 
 // Implements Mounter
diff --git a/pkg/mounter/s3fs.go b/pkg/mounter/s3fs.go
index 4bd79a0..9e38c7c 100644
--- a/pkg/mounter/s3fs.go
+++ b/pkg/mounter/s3fs.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"os"
 
-	"github.com/yandex-cloud/csi-s3/pkg/s3"
+	"github.com/yandex-cloud/k8s-csi-s3/pkg/s3"
 )
 
 // Implements Mounter
diff --git a/test/Dockerfile b/test/Dockerfile
index 2304a84..d2e111a 100644
--- a/test/Dockerfile
+++ b/test/Dockerfile
@@ -1,4 +1,4 @@
-FROM yandex-cloud/csi-s3:dev
+FROM yandex-cloud/k8s-csi-s3:dev
 LABEL maintainers="Vitaliy Filippov <vitalif@yourcmc.ru>"
 LABEL description="csi-s3 testing image"