e2e: allow parameterizing kind config

This commit allows the kind cluster configuration to be parameterized at
call time. This enables the test suite to build multiple clusters with
different configurations, e.g. different CIDRs, different numbers of
nodes, etc.

Signed-off-by: Lucas Servén Marín <lserven@gmail.com>
This commit is contained in:
Lucas Servén Marín
2021-07-05 13:14:23 +02:00
parent c728870b49
commit f81d19e692
3 changed files with 24 additions and 7 deletions

View File

@@ -3,5 +3,5 @@
. lib.sh
setup_suite() {
create_cluster
create_cluster "$(build_kind_config 2)"
}