Skip to content

Commit 1a6722d

Browse files
authored
Merge pull request #629 from averevki/increase-tls-timeout-azure
Increase TLSPolicy timeout for Azure TLS ACME challenges
2 parents 4409d64 + 221acd3 commit 1a6722d

File tree

1 file changed

+4
-5
lines changed
  • testsuite/kuadrant/policy

1 file changed

+4
-5
lines changed

testsuite/kuadrant/policy/tls.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from testsuite.gateway import Referencable
44
from testsuite.kubernetes.client import KubernetesClient
5-
from testsuite.kuadrant.policy import Policy, has_condition
5+
from testsuite.kuadrant.policy import Policy
66

77

88
class TLSPolicy(Policy):
@@ -49,7 +49,6 @@ def __setitem__(self, key, value):
4949
def __getitem__(self, key):
5050
return self.model.spec[key]
5151

52-
def wait_for_ready(self):
53-
"""Increase timeout to account for letsEncrypt"""
54-
success = self.wait_until(has_condition("Enforced", "True"), timelimit=180)
55-
assert success, f"{self.kind()} did not get ready in time"
52+
def wait_for_full_enforced(self, timelimit=450):
53+
"""Wait for a Policy to be fully Enforced with increased timelimit for ACME challenges"""
54+
super().wait_for_full_enforced(timelimit=timelimit)

0 commit comments

Comments
 (0)