Skip to content

Commit

Permalink
Merge pull request 2i2c-org#3568 from consideRatio/pr/default-k8s-1.28
Browse files Browse the repository at this point in the history
Default to k8s 1.28 in new clusters (EKS, GKE)
  • Loading branch information
consideRatio authored Jan 4, 2024
2 parents 63f392e + 22b50d8 commit 4d7fd21
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 2 additions & 1 deletion eksctl/nasa-esdis.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ local daskNodes = [];
kind: 'ClusterConfig',
metadata+: {
name: "nasa-esdis",
region: clusterRegion, version: '1.27'
region: clusterRegion,
version: '1.27',
},
availabilityZones: masterAzs,
iam: {
Expand Down
2 changes: 1 addition & 1 deletion eksctl/nasa-ghg.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ local daskNodes = [
metadata+: {
name: "nasa-ghg-hub",
region: clusterRegion,
version: '1.27'
version: '1.27',
},
availabilityZones: masterAzs,
iam: {
Expand Down
4 changes: 2 additions & 2 deletions eksctl/template.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ local daskNodes = [];
region: clusterRegion,
{#
version should be the latest support version by the eksctl CLI, see
https://eksctl.io/introduction/ for a list of supported versions.
https://eksctl.io/getting-started/ for a list of supported versions.
-#}
version: "1.27",
version: "1.28",
},
availabilityZones: masterAzs,
iam: {
Expand Down
4 changes: 1 addition & 3 deletions terraform/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,8 @@ variable "k8s_version_prefixes" {
# channel, so we may want to remove or add minor versions here over time.
#
default = [
"1.24.",
"1.25.",
"1.26.",
"1.27.",
"1.28.",
"1.",
]
description = <<-EOT
Expand Down

0 comments on commit 4d7fd21

Please sign in to comment.