Skip to content

Commit

Permalink
update CSI version
Browse files Browse the repository at this point in the history
  • Loading branch information
jichenjc committed Dec 12, 2023
1 parent f3e92a2 commit d64cd51
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 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.28.0
description: Cinder CSI Chart for OpenStack
name: openstack-cinder-csi
version: 2.29.0-alpha.3
version: 2.29.0-alpha.4
home: https://github.com/kubernetes/cloud-provider-openstack
icon: https://github.com/kubernetes/kubernetes/blob/master/logo/logo.png
maintainers:
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,36 +8,36 @@ csi:
attacher:
image:
repository: registry.k8s.io/sig-storage/csi-attacher
tag: v4.2.0
tag: v4.4.2
pullPolicy: IfNotPresent
resources: {}
extraArgs: {}
provisioner:
topology: "true"
image:
repository: registry.k8s.io/sig-storage/csi-provisioner
tag: v3.4.1
tag: v3.6.2
pullPolicy: IfNotPresent
resources: {}
extraArgs: {}
snapshotter:
image:
repository: registry.k8s.io/sig-storage/csi-snapshotter
tag: v6.2.1
tag: v6.3.2
pullPolicy: IfNotPresent
resources: {}
extraArgs: {}
resizer:
image:
repository: registry.k8s.io/sig-storage/csi-resizer
tag: v1.8.0
tag: v1.9.2
pullPolicy: IfNotPresent
resources: {}
extraArgs: {}
livenessprobe:
image:
repository: registry.k8s.io/sig-storage/livenessprobe
tag: v2.9.0
tag: v2.11.0
pullPolicy: IfNotPresent
failureThreshold: 5
initialDelaySeconds: 10
Expand All @@ -48,7 +48,7 @@ csi:
nodeDriverRegistrar:
image:
repository: registry.k8s.io/sig-storage/csi-node-driver-registrar
tag: v2.6.2
tag: v2.9.2
pullPolicy: IfNotPresent
resources: {}
extraArgs: {}
Expand Down
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.2.0
image: registry.k8s.io/sig-storage/csi-attacher:v4.4.2
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.4.1
image: registry.k8s.io/sig-storage/csi-provisioner:v3.6.2
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.2.1
image: registry.k8s.io/sig-storage/csi-snapshotter:v6.3.2
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.8.0
image: registry.k8s.io/sig-storage/csi-resizer:v1.9.2
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.9.0
image: registry.k8s.io/sig-storage/livenessprobe:v2.11.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.6.3
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.9.2
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.9.0
image: registry.k8s.io/sig-storage/livenessprobe:v2.11.0
args:
- --csi-address=/csi/csi.sock
volumeMounts:
Expand Down

0 comments on commit d64cd51

Please sign in to comment.