Skip to content

Commit 3697629

Browse files
authored
[CLOUD-541] Release 3.2.0 (#254)
* [CLOUD-541] Release 3.2.0 * update changelog
1 parent d7d2bc4 commit 3697629

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ NOTES:
55
BREAKING CHANGES:
66

77
ENHANCEMENTS:
8+
* resource/hopsworksai_cluster: Set Default `version` to 3.2.0
89

910
FEATURES:
1011

docs/resources/cluster.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ resource "hopsworksai_cluster" "cluster" {
124124
- `tags` (Map of String) The list of custom tags to be attached to the cluster.
125125
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts))
126126
- `update_state` (String) The action you can use to start or stop the cluster. It has to be one of these values [none, start, stop]. Defaults to `none`.
127-
- `version` (String) The version of the cluster. For existing clusters, you can change this attribute to upgrade to a newer version of Hopsworks. If the upgrade process ended up in an error state, you can always rollback to the old version by resetting this attribute to the old version. Defaults to `3.1.0`.
127+
- `version` (String) The version of the cluster. For existing clusters, you can change this attribute to upgrade to a newer version of Hopsworks. If the upgrade process ended up in an error state, you can always rollback to the old version by resetting this attribute to the old version. Defaults to `3.2.0`.
128128
- `workers` (Block Set) The configurations of worker nodes. You can add as many as you want of this block to create workers with different configurations. (see [below for nested schema](#nestedblock--workers))
129129

130130
### Read-Only

hopsworksai/resource_cluster.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ func clusterSchema() map[string]*schema.Schema {
113113
Description: "The version of the cluster. For existing clusters, you can change this attribute to upgrade to a newer version of Hopsworks. If the upgrade process ended up in an error state, you can always rollback to the old version by resetting this attribute to the old version.",
114114
Type: schema.TypeString,
115115
Optional: true,
116-
Default: "3.1.0",
116+
Default: "3.2.0",
117117
},
118118
"head": {
119119
Description: "The configurations of the head node of the cluster.",

0 commit comments

Comments
 (0)