Skip to content
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.

Releases: kyma-incubator/terraform-provider-kind

v0.0.11

09 Nov 16:49
5c4de43
Compare
Choose a tag to compare
build targets

v0.0.10

07 Nov 19:55
d203c42
Compare
Choose a tag to compare
darwin_arm64

v0.0.9

26 May 20:17
07b8abb
Compare
Choose a tag to compare

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

26 May 20:15
4ebf0bf
Compare
Choose a tag to compare

This release contains a few fixes, that were not included in v0.0.7

v0.0.7

21 Oct 19:51
2eab7e9
Compare
Choose a tag to compare

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

06 Oct 18:07
d421190
Compare
Choose a tag to compare

This release contains a fix for networking configuration that was discovered through #31.

v0.0.5

29 Sep 18:32
0773b57
Compare
Choose a tag to compare

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

15 Sep 15:03
5f7289a
Compare
Choose a tag to compare

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

08 Sep 18:08
b9f86ca
Compare
Choose a tag to compare

This release is a fix for #20. Thanks @pst.

v0.0.2

05 Aug 16:23
ad2500c
Compare
Choose a tag to compare

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.