diff --git a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-attacher.yaml b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-attacher.yaml index 295540cc57e..ac344b0a708 100644 --- a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-attacher.yaml +++ b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-attacher.yaml @@ -40,7 +40,7 @@ spec: serviceAccountName: csi-attacher containers: - name: csi-attacher - image: quay.io/k8scsi/csi-attacher:v2.0.0 + image: quay.io/k8scsi/csi-attacher:v2.1.0 args: - --v=5 - --csi-address=/csi/csi.sock diff --git a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-provisioner.yaml b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-provisioner.yaml index 57a1e488df8..4076204424e 100644 --- a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-provisioner.yaml +++ b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-provisioner.yaml @@ -40,8 +40,7 @@ spec: serviceAccountName: csi-provisioner containers: - name: csi-provisioner - # TODO: replace with official 1.5.0 release when ready - image: quay.io/k8scsi/csi-provisioner:v1.5.0-rc1 + image: quay.io/k8scsi/csi-provisioner:v1.5.0 args: - -v=5 - --csi-address=/csi/csi.sock diff --git a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-resizer.yaml b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-resizer.yaml index 7a730410b60..a7bffdb78d2 100644 --- a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-resizer.yaml +++ b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-resizer.yaml @@ -30,7 +30,7 @@ spec: serviceAccountName: csi-resizer containers: - name: csi-resizer - image: quay.io/k8scsi/csi-resizer:v0.3.0 + image: quay.io/k8scsi/csi-resizer:v0.4.0 args: - "--v=5" - "--csi-address=$(ADDRESS)" @@ -42,7 +42,6 @@ spec: # non-privileged sidecar containers cannot access unix domain socket # created by privileged CSI driver container. privileged: true - imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir diff --git a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-snapshotter.yaml b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-snapshotter.yaml index eb5d33a0588..192f3f1a29c 100644 --- a/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-snapshotter.yaml +++ b/test/e2e/testing-manifests/storage-csi/hostpath/hostpath/csi-hostpath-snapshotter.yaml @@ -30,8 +30,7 @@ spec: serviceAccount: csi-snapshotter containers: - name: csi-snapshotter - # TODO: replace with official 2.0.0 release when ready - image: quay.io/k8scsi/csi-snapshotter:v2.0.0-rc2 + image: quay.io/k8scsi/csi-snapshotter:v2.0.0 args: - "--v=5" - "--csi-address=$(ADDRESS)" @@ -43,7 +42,6 @@ spec: # non-privileged sidecar containers cannot access unix domain socket # created by privileged CSI driver container. privileged: true - imagePullPolicy: Always volumeMounts: - name: socket-dir mountPath: /csi diff --git a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-attacher.yaml b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-attacher.yaml index 6adcffb97f7..7de61ea680a 100644 --- a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-attacher.yaml +++ b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-attacher.yaml @@ -15,14 +15,13 @@ spec: serviceAccountName: csi-mock containers: - name: csi-attacher - image: quay.io/k8scsi/csi-attacher:v1.1.0 + image: quay.io/k8scsi/csi-attacher:v2.1.0 args: - --v=5 - --csi-address=$(ADDRESS) env: - name: ADDRESS value: /csi/csi.sock - imagePullPolicy: Always securityContext: privileged: true volumeMounts: diff --git a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-resizer.yaml b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-resizer.yaml index 740bf17c95a..90dc7094b2d 100644 --- a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-resizer.yaml +++ b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver-resizer.yaml @@ -15,14 +15,13 @@ spec: serviceAccountName: csi-mock containers: - name: csi-resizer - image: quay.io/k8scsi/csi-resizer:v0.1.0 + image: quay.io/k8scsi/csi-resizer:v0.4.0 args: - "--v=5" - "--csi-address=$(ADDRESS)" env: - name: ADDRESS value: /csi/csi.sock - imagePullPolicy: Always securityContext: privileged: true volumeMounts: diff --git a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver.yaml b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver.yaml index 3c588a971e8..4d21f5bb420 100644 --- a/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver.yaml +++ b/test/e2e/testing-manifests/storage-csi/mock/csi-mock-driver.yaml @@ -15,20 +15,18 @@ spec: serviceAccountName: csi-mock containers: - name: csi-provisioner - # TODO: replace with official 1.4.0 release when ready - image: quay.io/k8scsi/csi-provisioner:v1.4.0-rc1 + image: quay.io/k8scsi/csi-provisioner:v1.5.0 args: - "--csi-address=$(ADDRESS)" - "--connection-timeout=15s" env: - name: ADDRESS value: /csi/csi.sock - imagePullPolicy: Always volumeMounts: - mountPath: /csi name: socket-dir - name: driver-registrar - image: quay.io/k8scsi/csi-node-driver-registrar:v1.1.0 + image: quay.io/k8scsi/csi-node-driver-registrar:v1.2.0 args: - --v=5 - --csi-address=/csi/csi.sock @@ -39,7 +37,6 @@ spec: fieldRef: apiVersion: v1 fieldPath: spec.nodeName - imagePullPolicy: Always securityContext: privileged: true volumeMounts: @@ -62,7 +59,6 @@ spec: fieldPath: spec.nodeName securityContext: privileged: true - imagePullPolicy: IfNotPresent volumeMounts: - mountPath: /csi name: socket-dir