Skip to content

Commit

Permalink
[cinder-csi-plugin] bump CSI sidecar versions to latest (#2744)
Browse files Browse the repository at this point in the history
* bump CSI sidecar versions to latest

* fixup! bump CSI sidecar versions to latest
  • Loading branch information
jauru authored Dec 11, 2024
1 parent ac23a1e commit 8ece51f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion charts/cinder-csi-plugin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
12 changes: 6 additions & 6 deletions charts/cinder-csi-plugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: {}
Expand All @@ -17,31 +17,31 @@ csi:
topology: "true"
image:
repository: registry.k8s.io/sig-storage/csi-provisioner
tag: v3.6.2
tag: v5.1.0
pullPolicy: IfNotPresent
resources: {}
extraArgs: {}
extraEnv: []
snapshotter:
image:
repository: registry.k8s.io/sig-storage/csi-snapshotter
tag: v6.3.2
tag: v8.1.0
pullPolicy: IfNotPresent
resources: {}
extraArgs: {}
extraEnv: []
resizer:
image:
repository: registry.k8s.io/sig-storage/csi-resizer
tag: v1.9.2
tag: v1.12.0
pullPolicy: IfNotPresent
resources: {}
extraArgs: {}
extraEnv: []
livenessprobe:
image:
repository: registry.k8s.io/sig-storage/livenessprobe
tag: v2.11.0
tag: v2.14.0
pullPolicy: IfNotPresent
failureThreshold: 5
initialDelaySeconds: 10
Expand All @@ -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: {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -181,4 +181,3 @@ roleRef:
kind: ClusterRole
name: csi-resizer-role
apiGroup: rbac.authorization.k8s.io

10 changes: 5 additions & 5 deletions manifests/cinder-csi-plugin/cinder-csi-controllerplugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions manifests/cinder-csi-plugin/cinder-csi-nodeplugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand All @@ -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:
Expand Down

0 comments on commit 8ece51f

Please sign in to comment.