Skip to content

Commit af5a8c4

Browse files
committed
fix conflicting changes
1 parent 7310f5c commit af5a8c4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CMDS=cloudstack-csi-driver cloudstack-csi-sc-syncer
22

3-
PKG=github.com/shapeblue/cloudstack-csi-driver
3+
PKG=github.com/cloudstack/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

deploy/k8s/controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ spec:
6161

6262
containers:
6363
- name: cloudstack-csi-controller
64-
image: ghcr.io/shapeblue/cloudstack-csi-driver:main
64+
image: ghcr.io/cloudstack/cloudstack-csi-driver:main
6565
imagePullPolicy: Always
6666
args:
6767
- "controller"

deploy/k8s/node-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636

3737
containers:
3838
- name: cloudstack-csi-node
39-
image: ghcr.io/shapeblue/cloudstack-csi-driver:main
39+
image: ghcr.io/cloudstack/cloudstack-csi-driver:main
4040
imagePullPolicy: IfNotPresent
4141
args:
4242
- "node"

pkg/cloud/fake/fake.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func (f *fakeConnector) CreateVolumeFromSnapshot(ctx context.Context, zoneID, na
141141
return nil, nil
142142
}
143143

144-
func (f *fakeConnector) GetSnapshotByID(ctx context.Context, snapshotID ...string) (*cloud.Snapshot, error) {
144+
func (f *fakeConnector) GetSnapshotByID(ctx context.Context, snapshotID string) (*cloud.Snapshot, error) {
145145
return f.snapshot, nil
146146
}
147147

0 commit comments

Comments
 (0)