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=-"
You can’t perform that action at this time.
0 commit comments