Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: upgrade guide for #2256 #2261

Merged
merged 5 commits into from
Jan 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions docs/upgrading_to_v36.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Upgrading to v36.0
The v36.0 release of *kubernetes-engine* is a backwards incompatible release.

### var.enable_gcfs removed from Autopilot sub-modules
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).

```diff
module "cluster" {
- version = "~> 35.0"
+ version = "~> 36.0"

- enable_gcfs = true
}
```

### var.logging_variant removed from Autopilot sub-modules
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.

```diff
module "cluster" {
- version = "~> 35.0"
+ version = "~> 36.0"

- logging_variant = "DEFAULT"
}
```
Loading