Skip to content

Commit cb70169

Browse files
authored
Merge pull request #441 from andyzhangx/upgrade-sidecar-images2
chore: upgrade csi sidecar container images
2 parents d0bc147 + 75a4774 commit cb70169

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

charts/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ The following table lists the configurable parameters of the latest NFS CSI Driv
5151
| `image.nfs.tag` | csi-driver-nfs image tag | `latest` |
5252
| `image.nfs.pullPolicy` | csi-driver-nfs image pull policy | `IfNotPresent` |
5353
| `image.csiProvisioner.repository` | csi-provisioner docker image | `registry.k8s.io/sig-storage/csi-provisioner` |
54-
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v3.3.0` |
54+
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | `v3.5.0` |
5555
| `image.csiProvisioner.pullPolicy` | csi-provisioner image pull policy | `IfNotPresent` |
5656
| `image.livenessProbe.repository` | liveness-probe docker image | `registry.k8s.io/sig-storage/livenessprobe` |
57-
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.8.0` |
57+
| `image.livenessProbe.tag` | liveness-probe docker image tag | `v2.10.0` |
5858
| `image.livenessProbe.pullPolicy` | liveness-probe image pull policy | `IfNotPresent` |
5959
| `image.nodeDriverRegistrar.repository` | csi-node-driver-registrar docker image | `registry.k8s.io/sig-storage/csi-node-driver-registrar` |
60-
| `image.nodeDriverRegistrar.tag` | csi-node-driver-registrar docker image tag | `v2.6.2` |
60+
| `image.nodeDriverRegistrar.tag` | csi-node-driver-registrar docker image tag | `v2.8.0` |
6161
| `image.nodeDriverRegistrar.pullPolicy` | csi-node-driver-registrar image pull policy | `IfNotPresent` |
6262
| `imagePullSecrets` | Specify docker-registry secret names as an array | [] (does not add image pull secrets to deployed pods) |
6363
| `serviceAccount.create` | whether create service account of csi-nfs-controller | `true` |
-6 Bytes
Binary file not shown.

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ image:
66
pullPolicy: IfNotPresent
77
csiProvisioner:
88
repository: registry.k8s.io/sig-storage/csi-provisioner
9-
tag: v3.3.0
9+
tag: v3.5.0
1010
pullPolicy: IfNotPresent
1111
csiSnapshotter:
1212
repository: registry.k8s.io/sig-storage/csi-snapshotter
1313
tag: v6.2.1
1414
pullPolicy: IfNotPresent
1515
livenessProbe:
1616
repository: registry.k8s.io/sig-storage/livenessprobe
17-
tag: v2.8.0
17+
tag: v2.10.0
1818
pullPolicy: IfNotPresent
1919
nodeDriverRegistrar:
2020
repository: registry.k8s.io/sig-storage/csi-node-driver-registrar
21-
tag: v2.6.2
21+
tag: v2.8.0
2222
pullPolicy: IfNotPresent
2323
externalSnapshotter:
2424
repository: registry.k8s.io/sig-storage/snapshot-controller

deploy/csi-nfs-controller.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
effect: "NoSchedule"
3636
containers:
3737
- name: csi-provisioner
38-
image: registry.k8s.io/sig-storage/csi-provisioner:v3.3.0
38+
image: registry.k8s.io/sig-storage/csi-provisioner:v3.5.0
3939
args:
4040
- "-v=2"
4141
- "--csi-address=$(ADDRESS)"
@@ -69,7 +69,7 @@ spec:
6969
- name: socket-dir
7070
mountPath: /csi
7171
- name: liveness-probe
72-
image: registry.k8s.io/sig-storage/livenessprobe:v2.8.0
72+
image: registry.k8s.io/sig-storage/livenessprobe:v2.10.0
7373
args:
7474
- --csi-address=/csi/csi.sock
7575
- --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.8.0
33+
image: registry.k8s.io/sig-storage/livenessprobe:v2.10.0
3434
args:
3535
- --csi-address=/csi/csi.sock
3636
- --probe-timeout=3s
@@ -46,7 +46,7 @@ spec:
4646
cpu: 10m
4747
memory: 20Mi
4848
- name: node-driver-registrar
49-
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.6.2
49+
image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0
5050
args:
5151
- --v=2
5252
- --csi-address=/csi/csi.sock

0 commit comments

Comments
 (0)