diff --git a/charts/cinder-csi-plugin/Chart.yaml b/charts/cinder-csi-plugin/Chart.yaml index ea62bd3481..1cebdf42c3 100644 --- a/charts/cinder-csi-plugin/Chart.yaml +++ b/charts/cinder-csi-plugin/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: v1.31.2 description: Cinder CSI Chart for OpenStack name: openstack-cinder-csi -version: 2.31.5 +version: 2.31.6 home: https://github.com/kubernetes/cloud-provider-openstack icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png maintainers: diff --git a/charts/cinder-csi-plugin/templates/controllerplugin-rbac.yaml b/charts/cinder-csi-plugin/templates/controllerplugin-rbac.yaml index e8d7a909fc..7aa55d4aad 100644 --- a/charts/cinder-csi-plugin/templates/controllerplugin-rbac.yaml +++ b/charts/cinder-csi-plugin/templates/controllerplugin-rbac.yaml @@ -49,7 +49,7 @@ metadata: rules: - apiGroups: [""] resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "create", "delete"] + verbs: ["get", "list", "watch", "create", "delete", "patch"] - apiGroups: [""] resources: ["persistentvolumeclaims"] verbs: ["get", "list", "watch", "update"] diff --git a/charts/cinder-csi-plugin/values.yaml b/charts/cinder-csi-plugin/values.yaml index 3a0a17abdc..c84a83cd5f 100644 --- a/charts/cinder-csi-plugin/values.yaml +++ b/charts/cinder-csi-plugin/values.yaml @@ -8,7 +8,7 @@ csi: attacher: image: repository: registry.k8s.io/sig-storage/csi-attacher - tag: v4.4.2 + tag: v4.7.0 pullPolicy: IfNotPresent resources: {} extraArgs: {} @@ -17,7 +17,7 @@ csi: topology: "true" image: repository: registry.k8s.io/sig-storage/csi-provisioner - tag: v3.6.2 + tag: v5.1.0 pullPolicy: IfNotPresent resources: {} extraArgs: {} @@ -25,7 +25,7 @@ csi: snapshotter: image: repository: registry.k8s.io/sig-storage/csi-snapshotter - tag: v6.3.2 + tag: v8.1.0 pullPolicy: IfNotPresent resources: {} extraArgs: {} @@ -33,7 +33,7 @@ csi: resizer: image: repository: registry.k8s.io/sig-storage/csi-resizer - tag: v1.9.2 + tag: v1.12.0 pullPolicy: IfNotPresent resources: {} extraArgs: {} @@ -41,7 +41,7 @@ csi: livenessprobe: image: repository: registry.k8s.io/sig-storage/livenessprobe - tag: v2.11.0 + tag: v2.14.0 pullPolicy: IfNotPresent failureThreshold: 5 initialDelaySeconds: 10 @@ -53,7 +53,7 @@ csi: nodeDriverRegistrar: image: repository: registry.k8s.io/sig-storage/csi-node-driver-registrar - tag: v2.9.2 + tag: v2.12.0 pullPolicy: IfNotPresent resources: {} extraArgs: {} diff --git a/manifests/cinder-csi-plugin/cinder-csi-controllerplugin-rbac.yaml b/manifests/cinder-csi-plugin/cinder-csi-controllerplugin-rbac.yaml index 067e0f8e79..b05dfcaab0 100644 --- a/manifests/cinder-csi-plugin/cinder-csi-controllerplugin-rbac.yaml +++ b/manifests/cinder-csi-plugin/cinder-csi-controllerplugin-rbac.yaml @@ -53,7 +53,7 @@ metadata: rules: - apiGroups: [""] resources: ["persistentvolumes"] - verbs: ["get", "list", "watch", "create", "delete"] + verbs: ["get", "list", "watch", "create", "delete", "patch"] - apiGroups: [""] resources: ["persistentvolumeclaims"] verbs: ["get", "list", "watch", "update"] @@ -181,4 +181,3 @@ roleRef: kind: ClusterRole name: csi-resizer-role apiGroup: rbac.authorization.k8s.io - diff --git a/manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml b/manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml index 706ce4e24d..19027a5141 100644 --- a/manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml +++ b/manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml @@ -25,7 +25,7 @@ spec: serviceAccount: csi-cinder-controller-sa containers: - name: csi-attacher - image: registry.k8s.io/sig-storage/csi-attacher:v4.4.2 + image: registry.k8s.io/sig-storage/csi-attacher:v4.7.0 args: - "--csi-address=$(ADDRESS)" - "--timeout=3m" @@ -39,7 +39,7 @@ spec: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ - name: csi-provisioner - image: registry.k8s.io/sig-storage/csi-provisioner:v3.6.2 + image: registry.k8s.io/sig-storage/csi-provisioner:v5.1.0 args: - "--csi-address=$(ADDRESS)" - "--timeout=3m" @@ -55,7 +55,7 @@ spec: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ - name: csi-snapshotter - image: registry.k8s.io/sig-storage/csi-snapshotter:v6.3.2 + image: registry.k8s.io/sig-storage/csi-snapshotter:v8.1.0 args: - "--csi-address=$(ADDRESS)" - "--timeout=3m" @@ -69,7 +69,7 @@ spec: - mountPath: /var/lib/csi/sockets/pluginproxy/ name: socket-dir - name: csi-resizer - image: registry.k8s.io/sig-storage/csi-resizer:v1.9.2 + image: registry.k8s.io/sig-storage/csi-resizer:v1.12.0 args: - "--csi-address=$(ADDRESS)" - "--timeout=3m" @@ -83,7 +83,7 @@ spec: - name: socket-dir mountPath: /var/lib/csi/sockets/pluginproxy/ - name: liveness-probe - image: registry.k8s.io/sig-storage/livenessprobe:v2.11.0 + image: registry.k8s.io/sig-storage/livenessprobe:v2.14.0 args: - "--csi-address=$(ADDRESS)" env: diff --git a/manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml b/manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml index 1a1687674e..d196290791 100644 --- a/manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml +++ b/manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml @@ -21,7 +21,7 @@ spec: hostNetwork: true containers: - name: node-driver-registrar - image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.9.2 + image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.12.0 args: - "--csi-address=$(ADDRESS)" - "--kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)" @@ -41,7 +41,7 @@ spec: - name: registration-dir mountPath: /registration - name: liveness-probe - image: registry.k8s.io/sig-storage/livenessprobe:v2.11.0 + image: registry.k8s.io/sig-storage/livenessprobe:v2.14.0 args: - --csi-address=/csi/csi.sock volumeMounts: