diff --git a/CHANGELOG.md b/CHANGELOG.md index d6637e0..cf67b3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,3 +3,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## 2.0.1 + +* Bump patch versions of targeted image + +## 2.0.0 + +* Remove unused vars diff --git a/autoscaler.tf b/autoscaler.tf index 54a9de6..713916c 100644 --- a/autoscaler.tf +++ b/autoscaler.tf @@ -3,9 +3,10 @@ locals { # Update the map for new versions here: https://github.com/kubernetes/autoscaler/releases "1.24" = "v1.24.2" "1.25" = "v1.25.3" - "1.26" = "v1.26.4" - "1.27" = "v1.27.3" - "1.28" = "v1.28.0" + "1.26" = "v1.26.6" + "1.27" = "v1.27.5" + "1.28" = "v1.28.2" + "1.29" = "v1.29.0" } latest_cluster_version = sort(keys(local.version_tag_map))[length(local.version_tag_map) - 1] latest_image_version = lookup(local.version_tag_map, local.latest_cluster_version, "v1.28.0")