Rename ctrox/csi-s3 to yandex-cloud/csi-s3
This commit is contained in:
parent
49d7c3a488
commit
128b9d7738
13 changed files with 17 additions and 17 deletions
|
@ -1,5 +1,5 @@
|
||||||
image:
|
image:
|
||||||
name: ctrox/csi-s3:test
|
name: yandex-cloud/csi-s3:test
|
||||||
entrypoint: [""]
|
entrypoint: [""]
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
|
@ -21,4 +21,4 @@ test:
|
||||||
services:
|
services:
|
||||||
- docker:dind
|
- docker:dind
|
||||||
script:
|
script:
|
||||||
- docker run --rm --privileged -v $(pwd):/app --device /dev/fuse ctrox/csi-s3:test
|
- docker run --rm --privileged -v $(pwd):/app --device /dev/fuse yandex-cloud/csi-s3:test
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -14,7 +14,7 @@
|
||||||
.PHONY: test build container push clean
|
.PHONY: test build container push clean
|
||||||
|
|
||||||
PROJECT_DIR=/app
|
PROJECT_DIR=/app
|
||||||
REGISTRY_NAME=ctrox
|
REGISTRY_NAME=yandex-cloud
|
||||||
IMAGE_NAME=csi-s3
|
IMAGE_NAME=csi-s3
|
||||||
VERSION ?= dev
|
VERSION ?= dev
|
||||||
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(VERSION)
|
IMAGE_TAG=$(REGISTRY_NAME)/$(IMAGE_NAME):$(VERSION)
|
||||||
|
|
|
@ -161,7 +161,7 @@ kubectl logs -l app=csi-s3 -c csi-s3
|
||||||
This project can be built like any other go application.
|
This project can be built like any other go application.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
go get -u github.com/ctrox/csi-s3
|
go get -u github.com/yandex-cloud/csi-s3
|
||||||
```
|
```
|
||||||
|
|
||||||
### Build executable
|
### Build executable
|
||||||
|
|
|
@ -21,7 +21,7 @@ import (
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/ctrox/csi-s3/pkg/driver"
|
"github.com/yandex-cloud/csi-s3/pkg/driver"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
||||||
module github.com/ctrox/csi-s3
|
module github.com/yandex-cloud/csi-s3
|
||||||
|
|
||||||
go 1.15
|
go 1.15
|
||||||
|
|
||||||
|
|
|
@ -24,8 +24,8 @@ import (
|
||||||
"path"
|
"path"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/ctrox/csi-s3/pkg/mounter"
|
"github.com/yandex-cloud/csi-s3/pkg/mounter"
|
||||||
"github.com/ctrox/csi-s3/pkg/s3"
|
"github.com/yandex-cloud/csi-s3/pkg/s3"
|
||||||
"github.com/golang/glog"
|
"github.com/golang/glog"
|
||||||
"golang.org/x/net/context"
|
"golang.org/x/net/context"
|
||||||
"google.golang.org/grpc/codes"
|
"google.golang.org/grpc/codes"
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/ctrox/csi-s3/pkg/driver"
|
"github.com/yandex-cloud/csi-s3/pkg/driver"
|
||||||
"github.com/ctrox/csi-s3/pkg/mounter"
|
"github.com/yandex-cloud/csi-s3/pkg/mounter"
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
|
|
||||||
|
|
|
@ -22,8 +22,8 @@ import (
|
||||||
"regexp"
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/ctrox/csi-s3/pkg/mounter"
|
"github.com/yandex-cloud/csi-s3/pkg/mounter"
|
||||||
"github.com/ctrox/csi-s3/pkg/s3"
|
"github.com/yandex-cloud/csi-s3/pkg/s3"
|
||||||
"github.com/golang/glog"
|
"github.com/golang/glog"
|
||||||
"golang.org/x/net/context"
|
"golang.org/x/net/context"
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/ctrox/csi-s3/pkg/s3"
|
"github.com/yandex-cloud/csi-s3/pkg/s3"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|
|
@ -11,7 +11,7 @@ import (
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/ctrox/csi-s3/pkg/s3"
|
"github.com/yandex-cloud/csi-s3/pkg/s3"
|
||||||
"github.com/golang/glog"
|
"github.com/golang/glog"
|
||||||
"github.com/mitchellh/go-ps"
|
"github.com/mitchellh/go-ps"
|
||||||
"k8s.io/kubernetes/pkg/util/mount"
|
"k8s.io/kubernetes/pkg/util/mount"
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
|
|
||||||
"github.com/ctrox/csi-s3/pkg/s3"
|
"github.com/yandex-cloud/csi-s3/pkg/s3"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Implements Mounter
|
// Implements Mounter
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/ctrox/csi-s3/pkg/s3"
|
"github.com/yandex-cloud/csi-s3/pkg/s3"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Implements Mounter
|
// Implements Mounter
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
FROM ctrox/csi-s3:dev
|
FROM yandex-cloud/csi-s3:dev
|
||||||
LABEL maintainers="Vitaliy Filippov <vitalif@yourcmc.ru>"
|
LABEL maintainers="Vitaliy Filippov <vitalif@yourcmc.ru>"
|
||||||
LABEL description="csi-s3 testing image"
|
LABEL description="csi-s3 testing image"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue