Prepare release v1.2.0-rc.1

This commit is contained in:
Cyrill Troxler 2021-04-06 19:31:43 +02:00
parent b11261ebe7
commit 676dbef6d3
3 changed files with 3 additions and 3 deletions

View file

@ -81,7 +81,7 @@ spec:
capabilities: capabilities:
add: ["SYS_ADMIN"] add: ["SYS_ADMIN"]
allowPrivilegeEscalation: true allowPrivilegeEscalation: true
image: ctrox/csi-s3:dev image: ctrox/csi-s3:v1.2.0-rc.1
imagePullPolicy: Never imagePullPolicy: Never
args: args:
- "--endpoint=$(CSI_ENDPOINT)" - "--endpoint=$(CSI_ENDPOINT)"

View file

@ -89,7 +89,7 @@ spec:
- name: socket-dir - name: socket-dir
mountPath: /var/lib/kubelet/plugins/ch.ctrox.csi.s3-driver mountPath: /var/lib/kubelet/plugins/ch.ctrox.csi.s3-driver
- name: csi-s3 - name: csi-s3
image: ctrox/csi-s3:dev image: ctrox/csi-s3:v1.2.0-rc.1
args: args:
- "--endpoint=$(CSI_ENDPOINT)" - "--endpoint=$(CSI_ENDPOINT)"
- "--nodeid=$(NODE_ID)" - "--nodeid=$(NODE_ID)"

View file

@ -33,7 +33,7 @@ type driver struct {
} }
var ( var (
vendorVersion = "v1.1.1" vendorVersion = "v1.2.0-rc.1"
driverName = "ch.ctrox.csi.s3-driver" driverName = "ch.ctrox.csi.s3-driver"
) )