Rename repository to k8s-csi-s3
This commit is contained in:
parent
70c48b0f67
commit
a0a0f62575
13 changed files with 17 additions and 17 deletions
|
@ -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
|
||||
|
|
2
AUTHORS
2
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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() {
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/yandex-cloud/csi-s3
|
||||
module github.com/yandex-cloud/k8s-csi-s3
|
||||
|
||||
go 1.15
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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 (
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue