Commit a0a0f625 authored by Vitaliy Filippov's avatar Vitaliy Filippov
Browse files

Rename repository to k8s-csi-s3

parent 70c48b0f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
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
+1 −1
Original line number Diff line number Diff line
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
+1 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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() {
+1 −1
Original line number Diff line number Diff line
module github.com/yandex-cloud/csi-s3
module github.com/yandex-cloud/k8s-csi-s3

go 1.15

Loading