File tree 4 files changed +7
-8
lines changed
4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 15
15
STAGINGIMAGE =${GCE_PD_CSI_STAGING_IMAGE}
16
16
STAGINGVERSION =latest
17
17
18
- PRODIMAGE =gcr.io/google-containers/volume-csi/compute-persistent-disk-csi-driver
19
- PRODVERSION =v0.2 .0.alpha
18
+ PRODIMAGE =gcr.io/google-containers/volume-csi/gcp- compute-persistent-disk-csi-driver
19
+ PRODVERSION =v0.1 .0.alpha
20
20
21
21
all : gce-pd-driver
22
22
@@ -26,7 +26,6 @@ gce-pd-driver:
26
26
go test -c sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/test/e2e -o bin/e2e.test
27
27
28
28
build-container :
29
- # TODO CHANGE PRODVERSION TO STAGINGVERSION AFTER TESTING
30
29
docker build --build-arg TAG=$(STAGINGVERSION ) -t $(STAGINGIMAGE ) :$(STAGINGVERSION ) .
31
30
32
31
push-container : build-container
@@ -39,4 +38,4 @@ prod-push-container: prod-build-container
39
38
gcloud docker -- push $(PRODIMAGE ) :$(PRODVERSION )
40
39
41
40
test-sanity : gce-pd-driver
42
- go test -timeout 30s sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/test -run ^TestSanity$
41
+ go test -timeout 30s sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/test -run ^TestSanity$
Original file line number Diff line number Diff line change 42
42
mountPath : /csi
43
43
- name : gce-pd-driver
44
44
imagePullPolicy : Always
45
- image : gcr.io/dyzz-csi-staging/ csi/gce-pd- driver:latest
45
+ image : gcr.io/google-containers/volume- csi/gcp-compute-persistent-disk-csi- driver:v0.1.0.alpha
46
46
args :
47
47
- " --v=5"
48
48
- " --endpoint=$(CSI_ENDPOINT)"
Original file line number Diff line number Diff line change 36
36
securityContext :
37
37
privileged : true
38
38
imagePullPolicy : Always
39
- image : gcr.io/dyzz-csi-staging/ csi/gce-pd- driver:latest
39
+ image : gcr.io/google-containers/volume- csi/gcp-compute-persistent-disk-csi- driver:v0.1.0.alpha
40
40
args :
41
41
- " --v=5"
42
42
- " --endpoint=$(CSI_ENDPOINT)"
73
73
- name : device-dir
74
74
hostPath :
75
75
path : /dev
76
- type : Directory
76
+ type : Directory
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ func TestDeleteVolume(t *testing.T) {
213
213
req : & csi.DeleteVolumeRequest {
214
214
VolumeId : testVolumeId + "/foo" ,
215
215
},
216
- expErr : true ,
216
+ expErr : false ,
217
217
},
218
218
}
219
219
for _ , tc := range testCases {
You can’t perform that action at this time.
0 commit comments