diff --git a/pkg/application/autoscaling/cluster_autoscaler/cluster_autoscaler.go b/pkg/application/autoscaling/cluster_autoscaler/cluster_autoscaler.go index eb63a3f..535246a 100644 --- a/pkg/application/autoscaling/cluster_autoscaler/cluster_autoscaler.go +++ b/pkg/application/autoscaling/cluster_autoscaler/cluster_autoscaler.go @@ -13,7 +13,7 @@ import ( // GitHub: https://github.com/kubernetes/autoscaler/tree/master/cluster-autoscaler/cloudprovider/aws // Helm: https://github.com/kubernetes/autoscaler/tree/master/charts/cluster-autoscaler // Repo: registry.k8s.io/autoscaling/cluster-autoscaler -// Version: Latest for k8s 1.27 is v1.27.1 (as of 5/28/23) +// Version: Latest for k8s 1.27 is v1.27.3 (as of 8/22/23) func NewApp() *application.Application { app := &application.Application{ @@ -40,20 +40,20 @@ func NewApp() *application.Application { Namespace: "kube-system", ServiceAccount: "cluster-autoscaler", DefaultVersion: &application.KubernetesVersionDependent{ - LatestChart: "9.29.0", + LatestChart: "9.29.1", Latest: map[string]string{ - "1.27": "v1.27.1", - "1.26": "v1.26.2", - "1.25": "v1.25.1", - "1.24": "v1.24.1", + "1.27": "v1.27.3", + "1.26": "v1.26.4", + "1.25": "v1.25.3", + "1.24": "v1.24.3", "1.23": "v1.23.0", }, - PreviousChart: "9.28.0", + PreviousChart: "9.29.0", Previous: map[string]string{ "1.27": "v1.27.1", "1.26": "v1.26.2", - "1.25": "v1.25.0", - "1.24": "v1.24.0", + "1.25": "v1.25.1", + "1.24": "v1.24.1", "1.23": "v1.23.0", }, },