Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[manila-csi-plugin] bump CSI sidecar versions to latest #2749

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/manila-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: Manila CSI Chart for OpenStack
name: openstack-manila-csi
version: 2.31.3
version: 2.31.4
home: http://github.com/kubernetes/cloud-provider-openstack
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
maintainers:
Expand Down
8 changes: 4 additions & 4 deletions charts/manila-csi-plugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ nodeplugin:
registrar:
image:
repository: registry.k8s.io/sig-storage/csi-node-driver-registrar
tag: v2.4.0
tag: v2.12.0
pullPolicy: IfNotPresent
resources: {}
extraEnv: []
Expand All @@ -87,7 +87,7 @@ controllerplugin:
provisioner:
image:
repository: registry.k8s.io/sig-storage/csi-provisioner
tag: v3.0.0
tag: v5.1.0
pullPolicy: IfNotPresent
resources: {}
extraEnv: []
Expand All @@ -97,15 +97,15 @@ controllerplugin:
snapshotter:
image:
repository: registry.k8s.io/sig-storage/csi-snapshotter
tag: v5.0.1
tag: v8.1.0
pullPolicy: IfNotPresent
resources: {}
extraEnv: []
# CSI external-resizer container spec
resizer:
image:
repository: registry.k8s.io/sig-storage/csi-resizer
tag: v1.8.0
tag: v1.12.0
pullPolicy: IfNotPresent
resources: {}
extraEnv: []
Expand Down
7 changes: 3 additions & 4 deletions manifests/manila-csi-plugin/csi-controllerplugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
serviceAccountName: openstack-manila-csi-controllerplugin
containers:
- name: provisioner
image: "registry.k8s.io/sig-storage/csi-provisioner:v3.0.0"
image: "registry.k8s.io/sig-storage/csi-provisioner:v5.1.0"
args:
- "--csi-address=$(ADDRESS)"
- "--extra-create-metadata"
Expand All @@ -50,7 +50,7 @@ spec:
- name: plugin-dir
mountPath: /var/lib/kubelet/plugins/manila.csi.openstack.org
- name: snapshotter
image: "registry.k8s.io/sig-storage/csi-snapshotter:v5.0.1"
image: "registry.k8s.io/sig-storage/csi-snapshotter:v8.1.0"
args:
- "--csi-address=$(ADDRESS)"
env:
Expand All @@ -61,7 +61,7 @@ spec:
- name: plugin-dir
mountPath: /var/lib/kubelet/plugins/manila.csi.openstack.org
- name: resizer
image: "registry.k8s.io/sig-storage/csi-resizer:v1.8.0"
image: "registry.k8s.io/sig-storage/csi-resizer:v1.12.0"
args:
- "--csi-address=$(ADDRESS)"
- "--handle-volume-inuse-error=false"
Expand Down Expand Up @@ -125,4 +125,3 @@ spec:
hostPath:
path: /var/lib/kubelet/pods
type: Directory

2 changes: 1 addition & 1 deletion manifests/manila-csi-plugin/csi-nodeplugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
dnsPolicy: ClusterFirstWithHostNet
containers:
- name: registrar
image: "registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.4.0"
image: "registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.12.0"
args:
- "--csi-address=/csi/csi.sock"
- "--kubelet-registration-path=/var/lib/kubelet/plugins/manila.csi.openstack.org/csi.sock"
Expand Down
Loading