File tree Expand file tree Collapse file tree 20 files changed +38
-37
lines changed Expand file tree Collapse file tree 20 files changed +38
-37
lines changed Original file line number Diff line number Diff line change 8
8
- v*
9
9
10
10
env :
11
- REGISTRY_NAME : ghcr.io/leaseweb
11
+ REGISTRY_NAME : ghcr.io/shapeblue
12
12
IMAGES : " cloudstack-csi-driver cloudstack-csi-sc-syncer"
13
13
14
14
jobs :
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ linters-settings:
13
13
sections :
14
14
- standard
15
15
- default
16
- - prefix(github.com/leaseweb /cloudstack-csi-driver)
16
+ - prefix(github.com/shapeblue /cloudstack-csi-driver)
17
17
goimports :
18
- local-prefixes : github.com/leaseweb /cloudstack-csi-driver
18
+ local-prefixes : github.com/shapeblue /cloudstack-csi-driver
19
19
20
20
misspell :
21
21
locale : US
Original file line number Diff line number Diff line change 1
1
CMDS =cloudstack-csi-driver cloudstack-csi-sc-syncer
2
2
3
- PKG =github.com/leaseweb /cloudstack-csi-driver
3
+ PKG =github.com/shapeblue /cloudstack-csi-driver
4
4
# Revision that gets built into each binary via the main.version
5
5
# string. Uses the `git describe` output based on the most recent
6
6
# version tag with a short revision suffix or, if nothing has been
Original file line number Diff line number Diff line change 1
1
# CloudStack CSI Driver
2
2
3
- [ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/leaseweb /cloudstack-csi-driver.svg )] ( https://pkg.go.dev/github.com/leaseweb /cloudstack-csi-driver )
4
- [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/leaseweb /cloudstack-csi-driver )] ( https://goreportcard.com/report/github.com/leaseweb /cloudstack-csi-driver )
5
- [ ![ Release] ( https://github.com/leaseweb /cloudstack-csi-driver/workflows/Release/badge.svg?branch=master )] ( https://github.com/leaseweb /cloudstack-csi-driver/actions )
3
+ [ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/shapeblue /cloudstack-csi-driver.svg )] ( https://pkg.go.dev/github.com/shapeblue /cloudstack-csi-driver )
4
+ [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/shapeblue /cloudstack-csi-driver )] ( https://goreportcard.com/report/github.com/shapeblue /cloudstack-csi-driver )
5
+ [ ![ Release] ( https://github.com/shapeblue /cloudstack-csi-driver/workflows/Release/badge.svg?branch=master )] ( https://github.com/shapeblue /cloudstack-csi-driver/actions )
6
6
7
7
This repository provides a [ Container Storage Interface (CSI)] ( https://github.com/container-storage-interface/spec )
8
8
plugin for [ Apache CloudStack] ( https://cloudstack.apache.org/ ) .
@@ -56,7 +56,7 @@ you may use the same secret for both tools.
56
56
### Deployment
57
57
58
58
```
59
- kubectl apply -f https://github.com/leaseweb /cloudstack-csi-driver/releases/latest/download/manifest.yaml
59
+ kubectl apply -f https://github.com/shapeblue /cloudstack-csi-driver/releases/latest/download/manifest.yaml
60
60
```
61
61
62
62
### Creation of Storage classes
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ type: application
5
5
version : 2.0.2
6
6
appVersion : 0.6.1
7
7
sources :
8
- - https://github.com/Leaseweb /cloudstack-csi-driver
8
+ - https://github.com/shapeblue /cloudstack-csi-driver
9
9
keywords :
10
10
- csi
11
11
- cloudStack
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ sidecars:
135
135
controller :
136
136
enabled : true
137
137
image :
138
- repository : ghcr.io/leaseweb /cloudstack-csi-driver
138
+ repository : ghcr.io/shapeblue /cloudstack-csi-driver
139
139
# Overrides the image tag whose default is v{{ .Chart.AppVersion }}
140
140
tag : " "
141
141
pullPolicy : IfNotPresent
@@ -241,7 +241,7 @@ controller:
241
241
node :
242
242
enabled : true
243
243
image :
244
- repository : ghcr.io/leaseweb /cloudstack-csi-driver
244
+ repository : ghcr.io/shapeblue /cloudstack-csi-driver
245
245
# Overrides the image tag whose default is v{{ .Chart.AppVersion }}
246
246
tag : " "
247
247
pullPolicy : IfNotPresent
@@ -323,7 +323,7 @@ syncer:
323
323
enabled : true
324
324
# Job image
325
325
image :
326
- repository : " ghcr.io/leaseweb /cloudstack-csi-sc-syncer"
326
+ repository : " ghcr.io/shapeblue /cloudstack-csi-sc-syncer"
327
327
# Overrides the image tag. Default is {{ .Chart.AppVersion }}
328
328
tag : " "
329
329
imagePullPolicy : IfNotPresent
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM alpine:3.18
2
2
3
3
LABEL \
4
4
org.opencontainers.image.description="CloudStack CSI driver" \
5
- org.opencontainers.image.source="https://github.com/leaseweb /cloudstack-csi-driver/"
5
+ org.opencontainers.image.source="https://github.com/shapeblue /cloudstack-csi-driver/"
6
6
7
7
RUN apk add --no-cache \
8
8
ca-certificates \
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ import (
18
18
"k8s.io/component-base/logs/json"
19
19
"k8s.io/klog/v2"
20
20
21
- "github.com/leaseweb /cloudstack-csi-driver/pkg/cloud"
22
- "github.com/leaseweb /cloudstack-csi-driver/pkg/driver"
21
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/cloud"
22
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/driver"
23
23
)
24
24
25
25
func main () {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM alpine:3.18
2
2
3
3
LABEL \
4
4
org.opencontainers.image.description="CloudStack disk offering to Kubernetes storage class syncer" \
5
- org.opencontainers.image.source="https://github.com/leaseweb /cloudstack-csi-driver/"
5
+ org.opencontainers.image.source="https://github.com/shapeblue /cloudstack-csi-driver/"
6
6
7
7
RUN apk add --no-cache ca-certificates
8
8
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ You may use it locally or as a Kubernetes Job.
20
20
You must have a CloudStack configuration file and a Kubernetes ` kubeconfig `
21
21
file.
22
22
23
- 1 . Download ` cloudstack-csi-sc-syncer ` from [ latest release] ( https://github.com/leaseweb /cloudstack-csi-driver/releases/latest/ ) ;
23
+ 1 . Download ` cloudstack-csi-sc-syncer ` from [ latest release] ( https://github.com/shapeblue /cloudstack-csi-driver/releases/latest/ ) ;
24
24
25
25
1 . Set the execution permission:
26
26
85
85
serviceAccountName: cloudstack-csi-sc-syncer
86
86
containers:
87
87
- name: cloudstack-csi-sc-syncer
88
- image: ghcr.io/leaseweb /cloudstack-csi-sc-syncer:${version}
88
+ image: ghcr.io/shapeblue /cloudstack-csi-sc-syncer:${version}
89
89
args:
90
90
- "-cloudstackconfig=/etc/cloudstack-csi-driver/cloud-config"
91
91
- "-kubeconfig=-"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"os"
11
11
"path"
12
12
13
- "github.com/leaseweb /cloudstack-csi-driver/pkg/syncer"
13
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/syncer"
14
14
)
15
15
16
16
const agent = "cloudstack-csi-sc-syncer"
Original file line number Diff line number Diff line change 1
- module github.com/leaseweb /cloudstack-csi-driver
1
+ module github.com/shapeblue /cloudstack-csi-driver
2
2
3
3
go 1.21
4
4
Original file line number Diff line number Diff line change 7
7
8
8
"github.com/hashicorp/go-uuid"
9
9
10
- "github.com/leaseweb /cloudstack-csi-driver/pkg/cloud"
11
- "github.com/leaseweb /cloudstack-csi-driver/pkg/util"
10
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/cloud"
11
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/util"
12
12
)
13
13
14
14
const zoneID = "a1887604-237c-4212-a9cd-94620b7880fa"
Original file line number Diff line number Diff line change 9
9
"github.com/apache/cloudstack-go/v2/cloudstack"
10
10
"k8s.io/klog/v2"
11
11
12
- "github.com/leaseweb /cloudstack-csi-driver/pkg/util"
12
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/util"
13
13
)
14
14
15
15
func (c * client ) listVolumes (p * cloudstack.ListVolumesParams ) (* Volume , error ) {
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ import (
12
12
"google.golang.org/grpc/status"
13
13
"k8s.io/klog/v2"
14
14
15
- "github.com/leaseweb /cloudstack-csi-driver/pkg/cloud"
16
- "github.com/leaseweb /cloudstack-csi-driver/pkg/util"
15
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/cloud"
16
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/util"
17
17
)
18
18
19
19
// onlyVolumeCapAccessMode is the only volume capability access
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ import (
12
12
"google.golang.org/grpc"
13
13
"k8s.io/klog/v2"
14
14
15
- "github.com/leaseweb /cloudstack-csi-driver/pkg/cloud"
16
- "github.com/leaseweb /cloudstack-csi-driver/pkg/mount"
17
- "github.com/leaseweb /cloudstack-csi-driver/pkg/util"
15
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/cloud"
16
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/mount"
17
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/util"
18
18
)
19
19
20
20
// Interface is the CloudStack CSI driver interface.
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ import (
13
13
"google.golang.org/grpc/status"
14
14
"k8s.io/klog/v2"
15
15
16
- "github.com/leaseweb /cloudstack-csi-driver/pkg/cloud"
17
- "github.com/leaseweb /cloudstack-csi-driver/pkg/mount"
18
- "github.com/leaseweb /cloudstack-csi-driver/pkg/util"
16
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/cloud"
17
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/mount"
18
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/util"
19
19
)
20
20
21
21
const (
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
13
13
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
14
14
"k8s.io/apimachinery/pkg/labels"
15
15
16
- "github.com/leaseweb /cloudstack-csi-driver/pkg/driver"
16
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/driver"
17
17
)
18
18
19
19
var (
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
15
15
"k8s.io/client-go/rest"
16
16
"k8s.io/client-go/tools/clientcmd"
17
17
18
- "github.com/leaseweb /cloudstack-csi-driver/pkg/cloud"
18
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/cloud"
19
19
)
20
20
21
21
// Config holds the syncer tool configuration.
Original file line number Diff line number Diff line change @@ -5,15 +5,16 @@ package sanity
5
5
import (
6
6
"context"
7
7
"io/ioutil"
8
- "k8s.io/klog/v2"
9
8
"os"
10
9
"path/filepath"
11
10
"testing"
12
11
12
+ "k8s.io/klog/v2"
13
+
13
14
"github.com/kubernetes-csi/csi-test/v5/pkg/sanity"
14
- "github.com/leaseweb /cloudstack-csi-driver/pkg/cloud/fake"
15
- "github.com/leaseweb /cloudstack-csi-driver/pkg/driver"
16
- "github.com/leaseweb /cloudstack-csi-driver/pkg/mount"
15
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/cloud/fake"
16
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/driver"
17
+ "github.com/shapeblue /cloudstack-csi-driver/pkg/mount"
17
18
)
18
19
19
20
func TestSanity (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments