Skip to content

Commit 361f4f6

Browse files
container_cluster - document possible release_channel configurations (#4287) (#2768)
Signed-off-by: Modular Magician <[email protected]>
1 parent 2321b41 commit 361f4f6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.changelog/4287.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
```release-note:none
2+
```

google-beta/resource_container_cluster.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1072,15 +1072,19 @@ func resourceContainerCluster() *schema.Resource {
10721072
Optional: true,
10731073
Computed: true,
10741074
MaxItems: 1,
1075-
Description: `Configuration options for the Release channel feature, which provide more control over automatic upgrades of your GKE clusters.`,
1075+
Description: `Configuration options for the Release channel feature, which provide more control over automatic upgrades of your GKE clusters. Note that removing this field from your config will not unenroll it. Instead, use the "UNSPECIFIED" channel.`,
10761076
Elem: &schema.Resource{
10771077
Schema: map[string]*schema.Schema{
10781078
"channel": {
10791079
Type: schema.TypeString,
10801080
Required: true,
10811081
ValidateFunc: validation.StringInSlice([]string{"UNSPECIFIED", "RAPID", "REGULAR", "STABLE"}, false),
10821082
DiffSuppressFunc: emptyOrDefaultStringSuppress("UNSPECIFIED"),
1083-
Description: `The selected release channel.`,
1083+
Description: `The selected release channel. Accepted values are:
1084+
* UNSPECIFIED: Not set.
1085+
* RAPID: Weekly upgrade cadence; Early testers and developers who requires new features.
1086+
* REGULAR: Multiple per month upgrade cadence; Production users who need features not yet offered in the Stable channel.
1087+
* STABLE: Every few months upgrade cadence; Production users who need stability above all else, and for whom frequent upgrades are too risky.`,
10841088
},
10851089
},
10861090
},

0 commit comments

Comments
 (0)