despite retrying with multiple arrangements of networking configuration values it consistently crashes on every attempt to apply. an interesting thing to note is that when creating the plan, it seems to always inject the optional disable_default_cni argument:
module.local_kind_cluster.kind_cluster.default will be created
resource "kind_cluster" "default" {
client_certificate = (known after apply)
client_key = (known after apply)
cluster_ca_certificate = (known after apply)
endpoint = (known after apply)
id = (known after apply)
kubeconfig = (known after apply)
kubeconfig_path = (known after apply)
name = "testing"
node_image = (known after apply)
wait_for_ready = true
it seems that configuring a kind cluster with any network configuration defined at all terraform will crash when attempting to apply.
take, for example, this simple resource definition with an empty network configuration:
despite retrying with multiple arrangements of networking configuration values it consistently crashes on every attempt to apply. an interesting thing to note is that when creating the plan, it seems to always inject the optional
disable_default_cni
argument: