Skip to content

Commit 16c1387

Browse files
arun717cursoragent
andcommitted
test(e2e): add multi-operand qualification suite
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent a31bc8f commit 16c1387

6 files changed

Lines changed: 975 additions & 13 deletions

File tree

test/e2e/issuer_acme_http01_test.go

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ var _ = Describe("ACME Issuer HTTP01 solver", Label("Platform:Generic"), Ordered
265265
}
266266

267267
err := wait.PollUntilContextTimeout(ctx, fastPollInterval, lowTimeout, true, func(ctx context.Context) (bool, error) {
268-
pods, err := k8sClientSet.CoreV1().Pods("").List(ctx, metav1.ListOptions{
268+
pods, err := k8sClientSet.CoreV1().Pods(ns.Name).List(ctx, metav1.ListOptions{
269269
LabelSelector: acmeSolverPodLabel,
270270
})
271271
if err != nil {
@@ -286,10 +286,6 @@ var _ = Describe("ACME Issuer HTTP01 solver", Label("Platform:Generic"), Ordered
286286
return false, nil // No matching pods yet, keep waiting
287287
})
288288
Expect(err).NotTo(HaveOccurred(), "should find ACME HTTP01 solver pods with expected resource configuration")
289-
290-
By("waiting for certificate to get ready")
291-
err = waitForCertificateReadiness(ctx, secretName, ns.Name)
292-
Expect(err).NotTo(HaveOccurred(), "timeout waiting for certificate to become ready")
293289
})
294290
})
295291

0 commit comments

Comments
 (0)