Skip to content

Commit 00a1607

Browse files
authored
Merge pull request #847 from andyzhangx/upgrade-sidecar-images6
chore: upgrade CSI driver sidecar image versions
2 parents 13fef84 + 9062b63 commit 00a1607

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

charts/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ The following table lists the configurable parameters of the latest NFS CSI Driv
5353
| `image.nfs.tag` | csi-driver-nfs image tag | `latest` |
5454
| `image.nfs.pullPolicy` | csi-driver-nfs image pull policy | `IfNotPresent` |
5555
| `image.csiProvisioner.repository` | csi-provisioner docker image | `registry.k8s.io/sig-storage/csi-provisioner` |
56-
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v5.1.0` |
56+
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v5.2.0` |
5757
| `image.csiProvisioner.pullPolicy` | csi-provisioner image pull policy | `IfNotPresent` |
5858
| `image.livenessProbe.repository` | liveness-probe docker image | `registry.k8s.io/sig-storage/livenessprobe` |
59-
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.14.0` |
59+
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.15.0` |
6060
| `image.livenessProbe.pullPolicy` | liveness-probe image pull policy | `IfNotPresent` |
6161
| `image.nodeDriverRegistrar.repository` | csi-node-driver-registrar docker image | `registry.k8s.io/sig-storage/csi-node-driver-registrar` |
62-
| `image.nodeDriverRegistrar.tag` | csi-node-driver-registrar docker image tag | `v2.12.0` |
62+
| `image.nodeDriverRegistrar.tag` | csi-node-driver-registrar docker image tag | `v2.13.0` |
6363
| `image.nodeDriverRegistrar.pullPolicy` | csi-node-driver-registrar image pull policy | `IfNotPresent` |
6464
| `imagePullSecrets` | Specify docker-registry secret names as an array | [] (does not add image pull secrets to deployed pods) |
6565
| `serviceAccount.create` | whether create service account of csi-nfs-controller | `true` |
1 Byte
Binary file not shown.

charts/latest/csi-driver-nfs/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,23 @@ image:
77
pullPolicy: IfNotPresent
88
csiProvisioner:
99
repository: registry.k8s.io/sig-storage/csi-provisioner
10-
tag: v5.1.0
10+
tag: v5.2.0
1111
pullPolicy: IfNotPresent
1212
csiResizer:
1313
repository: registry.k8s.io/sig-storage/csi-resizer
14-
tag: v1.12.0
14+
tag: v1.13.1
1515
pullPolicy: IfNotPresent
1616
csiSnapshotter:
1717
repository: registry.k8s.io/sig-storage/csi-snapshotter
1818
tag: v8.2.0
1919
pullPolicy: IfNotPresent
2020
livenessProbe:
2121
repository: registry.k8s.io/sig-storage/livenessprobe
22-
tag: v2.14.0
22+
tag: v2.15.0
2323
pullPolicy: IfNotPresent
2424
nodeDriverRegistrar:
2525
repository: registry.k8s.io/sig-storage/csi-node-driver-registrar
26-
tag: v2.12.0
26+
tag: v2.13.0
2727
pullPolicy: IfNotPresent
2828
externalSnapshotter:
2929
repository: registry.k8s.io/sig-storage/snapshot-controller

deploy/csi-nfs-controller.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
effect: "NoSchedule"
3939
containers:
4040
- name: csi-provisioner
41-
image: registry.k8s.io/sig-storage/csi-provisioner:v5.1.0
41+
image: registry.k8s.io/sig-storage/csi-provisioner:v5.2.0
4242
args:
4343
- "-v=2"
4444
- "--csi-address=$(ADDRESS)"
@@ -65,7 +65,7 @@ spec:
6565
drop:
6666
- ALL
6767
- name: csi-resizer
68-
image: registry.k8s.io/sig-storage/csi-resizer:v1.12.0
68+
image: registry.k8s.io/sig-storage/csi-resizer:v1.13.1
6969
args:
7070
- "-csi-address=$(ADDRESS)"
7171
- "-v=2"
@@ -115,7 +115,7 @@ spec:
115115
drop:
116116
- ALL
117117
- name: liveness-probe
118-
image: registry.k8s.io/sig-storage/livenessprobe:v2.14.0
118+
image: registry.k8s.io/sig-storage/livenessprobe:v2.15.0
119119
args:
120120
- --csi-address=/csi/csi.sock
121121
- --probe-timeout=3s

deploy/csi-nfs-node.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec:
3030
- operator: "Exists"
3131
containers:
3232
- name: liveness-probe
33-
image: registry.k8s.io/sig-storage/livenessprobe:v2.14.0
33+
image: registry.k8s.io/sig-storage/livenessprobe:v2.15.0
3434
args:
3535
- --csi-address=/csi/csi.sock
3636
- --probe-timeout=3s
@@ -50,7 +50,7 @@ spec:
5050
drop:
5151
- ALL
5252
- name: node-driver-registrar
53-
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.12.0
53+
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.13.0
5454
args:
5555
- --v=2
5656
- --csi-address=/csi/csi.sock

0 commit comments

Comments
 (0)