Skip to content

Commit

Permalink
v3.0.0-pre1 (#1559)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaylonmcShan03 authored Jan 16, 2025
1 parent b328cfa commit 420fb40
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.0.0-pre1 (Jan 16, 2025)

* This pre-release migrates ports the provider project from `terraform-plugin-sdk/v2` to `terraform-plugin-framework` [[GH-1379](https://github.com/hashicorp/terraform-provider-helm/pull/1379)]

Please refer to the [migration guide](./docs/guides/v3-upgrade-guide.md).

## 2.17.0 (Dec 19, 2024)

ENHANCEMENT:
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,23 @@ information.

```hcl
provider "helm" {
kubernetes {
kubernetes = {
config_path = "~/.kube/config"
}
}
resource "helm_release" "nginx_ingress" {
name = "nginx-ingress-controller"
repository = "https://charts.bitnami.com/bitnami"
repository = "oci://registry-1.docker.io/bitnamicharts"
chart = "nginx-ingress-controller"
set {
set = [
{
name = "service.type"
value = "ClusterIP"
}
}
]
}
```

Expand Down

0 comments on commit 420fb40

Please sign in to comment.