From 656a6bac8ecdf2aabab94051e89295c1182bc94e Mon Sep 17 00:00:00 2001 From: "Troy P. Chuang" Date: Wed, 27 May 2026 15:07:13 -0700 Subject: [PATCH 1/3] add kubernetes v1.35 support --- Makefile | 5 ++++- README.md | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6c7481f..6fe6122 100644 --- a/Makefile +++ b/Makefile @@ -140,6 +140,9 @@ version: release-version: @echo $(RELEASE-VERSION) +test-e2e-1.35: container-build-single-platform install-tools + $(call TEST_KUBERNETES,v1.35.0,$(PREFIX),$(VERSION)-$(PLATFORM_TAG)) + test-e2e-1.34: container-build-single-platform install-tools $(call TEST_KUBERNETES,v1.34.0,$(PREFIX),$(VERSION)-$(PLATFORM_TAG)) @@ -152,6 +155,6 @@ test-e2e-1.32: container-build-single-platform install-tools test-e2e-1.31: container-build-single-platform install-tools $(call TEST_KUBERNETES,v1.31.0,$(PREFIX),$(VERSION)-$(PLATFORM_TAG)) -test-e2e-all: test-e2e-1.34 test-e2e-1.33 test-e2e-1.32 test-e2e-1.31 +test-e2e-all: test-e2e-1.35 test-e2e-1.34 test-e2e-1.33 test-e2e-1.32 test-e2e-1.31 .PHONY: test version diff --git a/README.md b/README.md index 03b294a..ab97377 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Every 10 minutes the metrics agent creates a tarball of the gathered metrics and ### Kubernetes Versions -Kubernetes versions 1.34 and below are supported by the metrics agent on AWS cloud service (EKS), Google Cloud Platform (GKE), Azure cloud services (AKS), and Oracle Cloud (OKE). +Kubernetes versions 1.35 and below are supported by the metrics agent on AWS cloud service (EKS), Google Cloud Platform (GKE), Azure cloud services (AKS), and Oracle Cloud (OKE). ### OpenShift Versions From c1cd3b13facedf4db53725b9e873a3de2e561c1f Mon Sep 17 00:00:00 2001 From: "Troy P. Chuang" Date: Wed, 27 May 2026 15:11:53 -0700 Subject: [PATCH 2/3] bump version to 2.14.13 --- charts/metrics-agent/Chart.yaml | 4 ++-- charts/metrics-agent/values.yaml | 2 +- version/version.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/metrics-agent/Chart.yaml b/charts/metrics-agent/Chart.yaml index 95cdadd..8554ca9 100644 --- a/charts/metrics-agent/Chart.yaml +++ b/charts/metrics-agent/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 2.14.12 +version: 2.14.13 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: 2.14.12 +appVersion: 2.14.13 diff --git a/charts/metrics-agent/values.yaml b/charts/metrics-agent/values.yaml index 30bc547..6789bf8 100644 --- a/charts/metrics-agent/values.yaml +++ b/charts/metrics-agent/values.yaml @@ -30,7 +30,7 @@ uploadRegion: "us-west-2" image: name: cloudability/metrics-agent - tag: 2.14.12 + tag: 2.14.13 pullPolicy: Always imagePullSecrets: [] diff --git a/version/version.go b/version/version.go index 554c002..c955af1 100644 --- a/version/version.go +++ b/version/version.go @@ -1,4 +1,4 @@ package version // VERSION is the current version of the agent -var VERSION = "2.14.12" +var VERSION = "2.14.13" From b6cd37f429bd4190df6675703af13d990f40adcf Mon Sep 17 00:00:00 2001 From: "Troy P. Chuang" Date: Thu, 28 May 2026 11:23:10 -0700 Subject: [PATCH 3/3] Keep the latest 4 e2e tests --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 6fe6122..96f1bfd 100644 --- a/Makefile +++ b/Makefile @@ -152,9 +152,7 @@ test-e2e-1.33: container-build-single-platform install-tools test-e2e-1.32: container-build-single-platform install-tools $(call TEST_KUBERNETES,v1.32.0,$(PREFIX),$(VERSION)-$(PLATFORM_TAG)) -test-e2e-1.31: container-build-single-platform install-tools - $(call TEST_KUBERNETES,v1.31.0,$(PREFIX),$(VERSION)-$(PLATFORM_TAG)) - -test-e2e-all: test-e2e-1.35 test-e2e-1.34 test-e2e-1.33 test-e2e-1.32 test-e2e-1.31 +# E2E test the latest 4 versions (can remove the older tests) +test-e2e-all: test-e2e-1.35 test-e2e-1.34 test-e2e-1.33 test-e2e-1.32 .PHONY: test version