Skip to content

Commit

Permalink
Release v2.35.0 (hashicorp#2647)
Browse files Browse the repository at this point in the history
* v2.35.0
  • Loading branch information
jrhouston authored Dec 12, 2024
1 parent 384d2da commit 32ccfe5
Show file tree
Hide file tree
Showing 2 changed files with 10 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 @@
## 2.35.0 (Dec 12, 2024)

FEATURES:

* `resources_kubernetes_daemon_set_v1` : Added `max_surge` argument for to `rolling_update` block. [[GH-2630](https://github.com/hashicorp/terraform-provider-kubernetes/issues/2630)]

## 2.34.0 (Nov 25, 2024)

ENHANCEMENTS:
Expand Down
8 changes: 4 additions & 4 deletions kubernetes/resource_kubernetes_daemon_set_v1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,8 @@ func testAccKubernetesDaemonSetV1ConfigWithMaxSurge(name, imageName, maxSurge st
strategy {
rolling_update {
max_surge = "%s"
max_unavailable = "1" # Set maxUnavailable to 1 if maxSurge is 0
max_surge = "%s"
max_unavailable = "1" # Set maxUnavailable to 1 if maxSurge is 0
}
}
}
Expand Down Expand Up @@ -616,8 +616,8 @@ func testAccKubernetesDaemonSetV1ConfigWithMaxSurge(name, imageName, maxSurge st
strategy {
rolling_update {
max_surge = "%s"
max_unavailable = "0" # Set maxUnavailable to 0 if maxSurge is set
max_surge = "%s"
max_unavailable = "0" # Set maxUnavailable to 0 if maxSurge is set
}
}
}
Expand Down

0 comments on commit 32ccfe5

Please sign in to comment.