From 17d9a0c5abccf5f73d9dd63fdde43aedd5a2ce54 Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Tue, 6 Mar 2018 11:43:25 +0100 Subject: [PATCH] Fixing e2e CSI test, II The fix for #60803 in commit 2ae33cc324fb had a typo, so the "Server rejected event" error still showed up in the external-provisioner log of the "Sanity CSI plugin test using hostPath CSI driver" e2e test. --- test/e2e/storage/csi_volumes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/storage/csi_volumes.go b/test/e2e/storage/csi_volumes.go index fad166705b2..a66f07641b3 100644 --- a/test/e2e/storage/csi_volumes.go +++ b/test/e2e/storage/csi_volumes.go @@ -95,7 +95,7 @@ func csiClusterRole( { APIGroups: []string{""}, Resources: []string{"events"}, - Verbs: []string{"get", "list", "watch", "creat", "update", "patch"}, + Verbs: []string{"get", "list", "watch", "create", "update", "patch"}, }, { APIGroups: []string{""},