From 50437acf162bdfb68066edc8e5cdf1bac8985435 Mon Sep 17 00:00:00 2001 From: Mehran Kholdi Date: Tue, 3 Aug 2021 01:02:50 +0430 Subject: [PATCH] Increase controller's timeout to prevent retry loops Since remote tasks might get a bit longer to get scheduled, it's reasonable to increase this timeout. Specifically, we faced an issue with a `DeleteVolume` action timing out over and over since it was running a bit over the default timeout. --- deploy/charts/rawfile-csi/templates/01-controller-plugin.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/charts/rawfile-csi/templates/01-controller-plugin.yaml b/deploy/charts/rawfile-csi/templates/01-controller-plugin.yaml index 694faf1..c8377f8 100644 --- a/deploy/charts/rawfile-csi/templates/01-controller-plugin.yaml +++ b/deploy/charts/rawfile-csi/templates/01-controller-plugin.yaml @@ -70,6 +70,7 @@ spec: - "--csi-address=$(ADDRESS)" - "--feature-gates=Topology=true" - "--strict-topology" + - "--timeout=120s" env: - name: ADDRESS value: /csi/csi.sock