Skip to content

Commit 0bc3a14

Browse files
authored
docs: upgrade guide for #2256 (#2261)
1 parent d10a723 commit 0bc3a14

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

docs/upgrading_to_v36.0.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Upgrading to v36.0
2+
The v36.0 release of *kubernetes-engine* is a backwards incompatible release.
3+
4+
### var.enable_gcfs removed from Autopilot sub-modules
5+
The variable `enable_gcfs` has been removed from the Autopilot sub-modules. Autopilot clusters that run GKE version `1.25.5-gke.1000` and later use [Image streaming](https://cloud.google.com/kubernetes-engine/docs/how-to/image-streaming).
6+
7+
```diff
8+
module "cluster" {
9+
- version = "~> 35.0"
10+
+ version = "~> 36.0"
11+
12+
- enable_gcfs = true
13+
}
14+
```
15+
16+
### var.logging_variant removed from Autopilot sub-modules
17+
The variable `logging_variant` has been removed from the Autopilot sub-modules. It is only [applicable](https://cloud.google.com/kubernetes-engine/docs/how-to/adjust-log-throughput) to Standard clusters.
18+
19+
```diff
20+
module "cluster" {
21+
- version = "~> 35.0"
22+
+ version = "~> 36.0"
23+
24+
- logging_variant = "DEFAULT"
25+
}
26+
```

0 commit comments

Comments
 (0)