Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand All @@ -149,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.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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions charts/metrics-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion charts/metrics-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ uploadRegion: "us-west-2"

image:
name: cloudability/metrics-agent
tag: 2.14.12
tag: 2.14.13
pullPolicy: Always

imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// VERSION is the current version of the agent
var VERSION = "2.14.12"
var VERSION = "2.14.13"
Loading