From a17c90ebc1d97c0050745429069deda0550dbb38 Mon Sep 17 00:00:00 2001 From: Curt Bushko Date: Mon, 30 Oct 2023 10:47:18 -0400 Subject: [PATCH] Update all clouds --- .changelog/3138.txt | 3 +++ .github/workflows/nightly-acceptance.yml | 8 +++++--- charts/consul/test/terraform/aks/variables.tf | 2 +- charts/consul/test/terraform/eks/main.tf | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 .changelog/3138.txt diff --git a/.changelog/3138.txt b/.changelog/3138.txt new file mode 100644 index 0000000000..e79382f360 --- /dev/null +++ b/.changelog/3138.txt @@ -0,0 +1,3 @@ +```release-note:improvement +helm: Kubernetes v1.28 is now supported. Minimum tested version of Kubernetes is now v1.26. +``` diff --git a/.github/workflows/nightly-acceptance.yml b/.github/workflows/nightly-acceptance.yml index 6db7684bb8..7c17a9877b 100644 --- a/.github/workflows/nightly-acceptance.yml +++ b/.github/workflows/nightly-acceptance.yml @@ -1,14 +1,16 @@ # Dispatch to the consul-k8s-workflows with a nightly cron name: nightly-acceptance on: - schedule: + #schedule: # * is a special character in YAML so you have to quote this string # Run nightly at 12AM UTC/8PM EST/5PM PST - - cron: '0 0 * * *' + # - cron: '0 0 * * *' + pull_request # these should be the only settings that you will ever need to change env: - BRANCH: ${{ github.ref_name }} + #BRANCH: ${{ github.ref_name }} + BRANCH: ${{ github.head_ref || github.ref_name }} CONTEXT: "nightly" jobs: diff --git a/charts/consul/test/terraform/aks/variables.tf b/charts/consul/test/terraform/aks/variables.tf index bb8d48251a..306532f85c 100644 --- a/charts/consul/test/terraform/aks/variables.tf +++ b/charts/consul/test/terraform/aks/variables.tf @@ -7,7 +7,7 @@ variable "location" { } variable "kubernetes_version" { - default = "1.25" + default = "1.26" description = "Kubernetes version supported on AKS" } diff --git a/charts/consul/test/terraform/eks/main.tf b/charts/consul/test/terraform/eks/main.tf index 3bc8b40451..739d4a5839 100644 --- a/charts/consul/test/terraform/eks/main.tf +++ b/charts/consul/test/terraform/eks/main.tf @@ -68,7 +68,7 @@ module "eks" { kubeconfig_api_version = "client.authentication.k8s.io/v1beta1" cluster_name = "consul-k8s-${random_id.suffix[count.index].dec}" - cluster_version = "1.26" + cluster_version = "1.27" subnets = module.vpc[count.index].private_subnets enable_irsa = true