Skip to content
This repository was archived by the owner on Sep 27, 2024. It is now read-only.
Open
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 4 additions & 3 deletions autoscaler.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down