Skip to content

Commit

Permalink
test 1.25 to 1.28
Browse files Browse the repository at this point in the history
  • Loading branch information
curtbushko committed Oct 30, 2023
1 parent 100219b commit 149448d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .changelog/3138.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```release-note:improvement
helm: Kubernetes v1.28 is now supported. Minimum tested version of Kubernetes is now v1.26.
helm: Kubernetes v1.28 is now supported. Minimum tested version of Kubernetes is now v1.25.
```
9 changes: 3 additions & 6 deletions .github/workflows/nightly-acceptance.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# Dispatch to the consul-k8s-workflows with a nightly cron
name: nightly-acceptance
on:
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 * * *'
pull_request:

# these should be the only settings that you will ever need to change
# these should be the only settings that you will ever need to change
env:
BRANCH: ${{ github.ref_name }}
BRANCH: ${{ github.head_ref || github.ref_name }}
CONTEXT: "nightly"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ by contacting us at [security@hashicorp.com](mailto:security@hashicorp.com).

The following pre-requisites must be met before installing Consul on Kubernetes.

* **Kubernetes 1.24.x - 1.27.x** - This represents the earliest versions of Kubernetes tested.
* **Kubernetes 1.25.x - 1.28.x** - This represents the earliest versions of Kubernetes tested.
It is possible that this chart works with earlier versions, but it is
untested.
* Helm install
Expand Down
2 changes: 1 addition & 1 deletion charts/consul/test/terraform/aks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ variable "location" {
}

variable "kubernetes_version" {
default = "1.26"
default = "1.25"
description = "Kubernetes version supported on AKS"
}

Expand Down
2 changes: 1 addition & 1 deletion charts/consul/test/terraform/eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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.27"
cluster_version = "1.26"
subnets = module.vpc[count.index].private_subnets
enable_irsa = true

Expand Down
4 changes: 2 additions & 2 deletions charts/consul/test/terraform/gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ resource "google_container_cluster" "cluster" {
# api. Hardcode GKE version for now.
#min_master_version = data.google_container_engine_versions.main.latest_master_version
#node_version = data.google_container_engine_versions.main.latest_master_version
min_master_version = "1.28.2-gke.1157000"
node_version = "1.28.2-gke.1157000"
min_master_version = "1.27.3-gke.100"
node_version = "1.27.3-gke.100"
node_config {
tags = ["consul-k8s-${random_id.suffix[count.index].dec}"]
machine_type = "e2-standard-8"
Expand Down

0 comments on commit 149448d

Please sign in to comment.