Releases: kyma-incubator/terraform-provider-kind
v0.0.11
v0.0.10
darwin_arm64
v0.0.9
This release pushes the kind release forward to v0.11.0 & kubernetes client dependency to v0.20.2 to be on-par with kind.
v0.0.8
This release contains a few fixes, that were not included in v0.0.7
v0.0.7
This release enables the option to pass a specific path for kubeconfig like so:
provider "kind" {}
resource "kind_cluster" "default" {
name = "test-cluster"
kubeconfig_path = "/tmp/kind-provider-test/new_file"
}
v0.0.6
v0.0.5
This release has breaking changes compared to v0.0.4, as the provider now supports configuration of kind via hcl. Please see the updated example in the example folder: https://github.com/kyma-incubator/terraform-provider-kind/blob/master/example/main.tf
v0.0.4
This release updates the kind dependency to the latest kind release v0.9.0: https://github.com/kubernetes-sigs/kind/releases/tag/v0.9.0
v0.0.3
v0.0.2
We've changed the resource a little bit, previous .tf files using the provider will not work anymore, as the resource has been renamed to follow the best practices.
Example usage of the provider:
provider "kind" {}
resource "kind_cluster" "default" {
name = "test-cluster"
}
This will create a kind cluster of the name test-cluster
. Feel free to check out the newly added documentation in the docs/
folder as well.