-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkuttl-test.yaml.jinja2
28 lines (26 loc) · 1.04 KB
/
kuttl-test.yaml.jinja2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
apiVersion: kuttl.dev/v1beta1
kind: TestSuite
testDirs:
{% for testcase in testinput.tests %}
- ./tests/{{ testcase.name }}
{% endfor %}
startKIND: false
suppress: ["events"]
parallel: 2
# The timeout (in seconds) is used when namespaces are created or
# deleted, and, if not overridden, in TestSteps, TestAsserts, and
# Commands. If not set, the timeout is 30 seconds by default.
#
# The deletion of a namespace can take a while until all resources,
# especially PersistentVolumeClaims, are gracefully shut down. If the
# timeout is reached in the meantime, even a successful test case is
# considered a failure.
#
# For instance, the termination grace period of the Vector aggregator in
# the logging tests is set to 60 seconds. If there are logs entries
# which could not be forwarded yet to the external aggregator defined in
# the VECTOR_AGGREGATOR environment variable, then the test aggregator
# uses this period of time by trying to forward the events. In this
# case, deleting a namespace with several Pods takes about 90 seconds.
timeout: 300