Skip to content

Commit ee52621

Browse files
committed
temporary fix for missing 1.26 image
1 parent 7753d66 commit ee52621

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

add_on_k8s_autoscaler.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
locals {
6-
cluster_autoscaler_supported_k8s_versions = { "1.21" = "1.21.1-3", "1.22" = "1.22.2-4", "1.23" = "1.23.0-4", "1.24" = "1.24.0-5", "1.25" = "1.25.0-6" } # There's no API to get that list. Need to be updated manually
6+
cluster_autoscaler_supported_k8s_versions = { "1.23" = "1.23.0-4", "1.24" = "1.24.0-5", "1.25" = "1.25.0-6", "1.26" = "1.25.0-6" } # There's no API to get that list. Need to be updated manually
77
cluster_autoscaler_image_version = lookup(local.cluster_autoscaler_supported_k8s_versions, local.k8s_major_minor_version, reverse(values(local.cluster_autoscaler_supported_k8s_versions))[0])
88
cluster_autoscaler_image = "iad.ocir.io/oracle/oci-cluster-autoscaler:${local.cluster_autoscaler_image_version}"
99
cluster_autoscaler_log_level_verbosity = 4

tests/tests.sh

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
set -e
77
clean_up () {
88
ARG=$?
9+
log INFO "Debug info..."
10+
kubectl get pods -A
911
log INFO "Cleaning up..."
1012
destroy_stack || exit 1
1113
exit $ARG

0 commit comments

Comments
 (0)