From bdd6d8df36384881d0f0c4554bb8b1a0a32aeef8 Mon Sep 17 00:00:00 2001 From: Peter Rifel Date: Sat, 24 Apr 2021 09:28:25 -0500 Subject: [PATCH] Add missing clientset to EBS storage e2e test A recent refactoring of these tests to use common pod functions requires that the StorageClassTest's Client be set. This updates the "Invalid AWS KMS key" test to set its Client similar to other tests in the file. --- test/e2e/storage/volume_provisioning.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/storage/volume_provisioning.go b/test/e2e/storage/volume_provisioning.go index 9b01c741879..ac0eacf3f84 100644 --- a/test/e2e/storage/volume_provisioning.go +++ b/test/e2e/storage/volume_provisioning.go @@ -825,6 +825,7 @@ var _ = utils.SIGDescribe("Dynamic Provisioning", func() { ginkgo.It("should report an error and create no PV", func() { e2eskipper.SkipUnlessProviderIs("aws") test := testsuites.StorageClassTest{ + Client: c, Name: "AWS EBS with invalid KMS key", Provisioner: "kubernetes.io/aws-ebs", Timeouts: f.Timeouts,