Skip to content

Commit 2283e3a

Browse files
committed
docs: for #2256
1 parent 4df226d commit 2283e3a

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
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.
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
17+
The variable `logging_variant` has been removed from the Autopilot sub-modules. It is only applicable 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)