Skip to content

Commit f496341

Browse files
authored
Merge pull request #396 from linode/attacher-update
Update csi-attacher and increase attacher timeout
2 parents d228f4a + b75f474 commit f496341

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

deploy/kubernetes/base/ss-csi-linode-controller.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,12 @@ spec:
4444
- name: socket-dir
4545
mountPath: /var/lib/csi/sockets/pluginproxy/
4646
- name: csi-attacher
47-
image: registry.k8s.io/sig-storage/csi-attacher:v4.7.0
47+
image: registry.k8s.io/sig-storage/csi-attacher:v4.8.1
4848
imagePullPolicy: IfNotPresent
4949
args:
5050
- "--v=2"
5151
- "--csi-address=$(ADDRESS)"
52+
- "--timeout=30s"
5253
env:
5354
- name: ADDRESS
5455
value: /var/lib/csi/sockets/pluginproxy/csi.sock

helm-chart/csi-driver/templates/csi-linode-controller.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ spec:
5454
- args:
5555
- --v=2
5656
- --csi-address=$(ADDRESS)
57+
- --timeout=30s
5758
{{- if .Values.enableMetrics}}
5859
- --metrics-address={{ .Values.csiAttacher.metrics.address }}
5960
{{- end }}

helm-chart/csi-driver/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ csiProvisioner:
4949

5050
csiAttacher:
5151
image: registry.k8s.io/sig-storage/csi-attacher
52-
tag: v4.7.0
52+
tag: v4.8.1
5353
pullPolicy: IfNotPresent
5454
metrics:
5555
address: "0.0.0.0:10249"

internal/driver/deploy/releases/linode-blockstorage-csi-driver.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ spec:
310310
env:
311311
- name: ADDRESS
312312
value: /var/lib/csi/sockets/pluginproxy/csi.sock
313-
image: registry.k8s.io/sig-storage/csi-attacher:v4.7.0
313+
image: registry.k8s.io/sig-storage/csi-attacher:v4.8.1
314314
imagePullPolicy: IfNotPresent
315315
name: csi-attacher
316316
securityContext:
@@ -324,6 +324,7 @@ spec:
324324
- args:
325325
- --v=2
326326
- --csi-address=$(ADDRESS)
327+
- --timeout=30s
327328
env:
328329
- name: ADDRESS
329330
value: /var/lib/csi/sockets/pluginproxy/csi.sock

0 commit comments

Comments
 (0)