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 88 - v*
99
1010env :
11- REGISTRY_NAME : ghcr.io/leaseweb
11+ REGISTRY_NAME : ghcr.io/shapeblue
1212 IMAGES : " cloudstack-csi-driver cloudstack-csi-sc-syncer"
1313
1414jobs :
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ linters-settings:
1313 sections :
1414 - standard
1515 - default
16- - prefix(github.com/leaseweb /cloudstack-csi-driver)
16+ - prefix(github.com/shapeblue /cloudstack-csi-driver)
1717 goimports :
18- local-prefixes : github.com/leaseweb /cloudstack-csi-driver
18+ local-prefixes : github.com/shapeblue /cloudstack-csi-driver
1919
2020 misspell :
2121 locale : US
Original file line number Diff line number Diff line change 11CMDS =cloudstack-csi-driver cloudstack-csi-sc-syncer
22
3- PKG =github.com/leaseweb /cloudstack-csi-driver
3+ PKG =github.com/shapeblue /cloudstack-csi-driver
44# Revision that gets built into each binary via the main.version
55# string. Uses the `git describe` output based on the most recent
66# version tag with a short revision suffix or, if nothing has been
Original file line number Diff line number Diff line change 11# CloudStack CSI Driver
22
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 )
66
77This repository provides a [ Container Storage Interface (CSI)] ( https://github.com/container-storage-interface/spec )
88plugin for [ Apache CloudStack] ( https://cloudstack.apache.org/ ) .
@@ -56,7 +56,7 @@ you may use the same secret for both tools.
5656### Deployment
5757
5858```
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
6060```
6161
6262### Creation of Storage classes
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ type: application
55version : 2.0.2
66appVersion : 0.6.1
77sources :
8- - https://github.com/Leaseweb /cloudstack-csi-driver
8+ - https://github.com/shapeblue /cloudstack-csi-driver
99keywords :
1010 - csi
1111 - cloudStack
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ sidecars:
135135controller :
136136 enabled : true
137137 image :
138- repository : ghcr.io/leaseweb /cloudstack-csi-driver
138+ repository : ghcr.io/shapeblue /cloudstack-csi-driver
139139 # Overrides the image tag whose default is v{{ .Chart.AppVersion }}
140140 tag : " "
141141 pullPolicy : IfNotPresent
@@ -241,7 +241,7 @@ controller:
241241node :
242242 enabled : true
243243 image :
244- repository : ghcr.io/leaseweb /cloudstack-csi-driver
244+ repository : ghcr.io/shapeblue /cloudstack-csi-driver
245245 # Overrides the image tag whose default is v{{ .Chart.AppVersion }}
246246 tag : " "
247247 pullPolicy : IfNotPresent
@@ -323,7 +323,7 @@ syncer:
323323 enabled : true
324324 # Job image
325325 image :
326- repository : " ghcr.io/leaseweb /cloudstack-csi-sc-syncer"
326+ repository : " ghcr.io/shapeblue /cloudstack-csi-sc-syncer"
327327 # Overrides the image tag. Default is {{ .Chart.AppVersion }}
328328 tag : " "
329329 imagePullPolicy : IfNotPresent
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM alpine:3.18
22
33LABEL \
44 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/"
66
77RUN apk add --no-cache \
88 ca-certificates \
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ import (
1818 "k8s.io/component-base/logs/json"
1919 "k8s.io/klog/v2"
2020
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"
2323)
2424
2525func main () {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM alpine:3.18
22
33LABEL \
44 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/"
66
77RUN apk add --no-cache ca-certificates
88
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ You may use it locally or as a Kubernetes Job.
2020You must have a CloudStack configuration file and a Kubernetes ` kubeconfig `
2121file.
2222
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/ ) ;
2424
25251 . Set the execution permission:
2626
8585 serviceAccountName: cloudstack-csi-sc-syncer
8686 containers:
8787 - 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}
8989 args:
9090 - "-cloudstackconfig=/etc/cloudstack-csi-driver/cloud-config"
9191 - "-kubeconfig=-"
You can’t perform that action at this time.
0 commit comments