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

Upgrade gke k8s version to v1.27 for testing #7940

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/advanced-topics/gke-autopilot.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This page shows how to run ECK on GKE Autopilot.
[id="{p}-autopilot-setting-virtual-memory"]
== Ensuring virtual memory kernel settings

If you are intending to run production workloads on GKE Autopilot then `vm.max_map_count` should be set. The recommended way to set this kernel setting on the Autopilot hosts is with a `Daemonset` as described in the <<{p}-virtual-memory>> section. You must be running at least version 1.25 when on the `regular` channel or using the `rapid` channel, which currently runs version 1.26.
If you are intending to run production workloads on GKE Autopilot then `vm.max_map_count` should be set. The recommended way to set this kernel setting on the Autopilot hosts is with a `Daemonset` as described in the <<{p}-virtual-memory>> section. You must be running at least version 1.25 when on the `regular` channel or using the `rapid` channel, which currently runs version 1.27.

CAUTION: Only use the provided `Daemonset` exactly as specified or it could be rejected by the Autopilot control plane.

Expand Down
8 changes: 4 additions & 4 deletions hack/deployer/config/plans.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plans:
operation: create
clusterName: ci
provider: gke
kubernetesVersion: 1.26
kubernetesVersion: 1.27
machineType: n1-standard-8
serviceAccount: true
enforceSecurityPolicies: true
Expand All @@ -18,7 +18,7 @@ plans:
operation: create
clusterName: ci-autopilot
provider: gke
kubernetesVersion: 1.26
kubernetesVersion: 1.27
serviceAccount: true
enforceSecurityPolicies: true
# this is disabled in autopilot: container provisioner is privileged; not allowed in Autopilot
Expand All @@ -31,7 +31,7 @@ plans:
operation: create
clusterName: dev
provider: gke
kubernetesVersion: 1.26
kubernetesVersion: 1.27
machineType: n1-standard-8
serviceAccount: false
enforceSecurityPolicies: true
Expand All @@ -58,7 +58,7 @@ plans:
operation: create
clusterName: dev-autopilot
provider: gke
kubernetesVersion: 1.26
kubernetesVersion: 1.27
serviceAccount: false
enforceSecurityPolicies: true
gke:
Expand Down