From df659eab14c3ffcb33d3618f78ed7181002d9d12 Mon Sep 17 00:00:00 2001 From: Mark Mercado Date: Fri, 3 Feb 2023 17:26:24 -0500 Subject: [PATCH 1/2] Shift K3s and K8s versions forward --- .circleci/config.yml | 4 ++-- .github/workflows/e2e.yaml | 2 +- CHANGELOG.md | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0170bf43..8454ac3a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -63,9 +63,9 @@ workflows: parameters: # https://kubernetes.io/releases kubernetes-version: + - "v1.26.1" - "v1.25.5" - "v1.24.9" - - "v1.23.15" # Run periodic nightly Helm tests to ensure there are no regressions e2e-nightly: jobs: @@ -74,9 +74,9 @@ workflows: parameters: # https://kubernetes.io/releases kubernetes-version: + - "v1.26.1" - "v1.25.5" - "v1.24.9" - - "v1.23.15" triggers: - schedule: cron: "0 1 * * *" diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 1c3a01a4..d5667048 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -28,7 +28,7 @@ jobs: # https://github.com/StackStorm/stackstorm-k8s/issues/342 # https://github.com/k3s-io/k3s/releases k3s-channel: - - "v1.26.0+k3s1" + - "v1.26.1+k3s1" steps: - name: Checkout source uses: actions/checkout@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d108c19..bdfaecba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog ## In Development +* Shift K3s and K8s versions forward. (by @mamercad) * BREAKING: Use the standardized labels recommended in the Helm docs. You can use `migrations/v1.0/standardize-labels.sh` to prepare an existing cluster before running `helm update`. (#351) (by @cognifloyd) * Drop support for `networking.k8s.io/v1beta1` which was removed in kubernetes v1.22 (EOL 2022-10-28) (#353) (by @cognifloyd) * Reduce duplication in label tests (#354) (by @cognifloyd) From 7907a522021a2ecec5c43f8c11096770c89ff543 Mon Sep 17 00:00:00 2001 From: Mark Mercado Date: Fri, 3 Feb 2023 18:23:56 -0500 Subject: [PATCH 2/2] Bump minikube --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8454ac3a..4532daf7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -27,7 +27,7 @@ jobs: - kubernetes/install - minikube/minikube-install: # https://github.com/kubernetes/minikube/releases - version: v1.28.0 + version: v1.29.0 - run: name: Install Helm v3 command: curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash