From 18bd7e8335211983a2c9e7257c81a7e073b7603d Mon Sep 17 00:00:00 2001 From: AidanAbd Date: Mon, 8 Apr 2024 10:17:17 -0700 Subject: [PATCH] fix: version upgrades --- sysbox-eks.pkr.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysbox-eks.pkr.hcl b/sysbox-eks.pkr.hcl index 21b42b6..2f39414 100644 --- a/sysbox-eks.pkr.hcl +++ b/sysbox-eks.pkr.hcl @@ -10,7 +10,7 @@ variable "ubuntu_version" { variable "sysbox_version" { type = string - default = "0.6.2" + default = "0.6.4" validation { condition = can(regex("^\\d+\\.\\d+\\.\\d+$", var.sysbox_version)) @@ -20,7 +20,7 @@ variable "sysbox_version" { variable "k8s_version" { type = string - default = "1.24" + default = "1.25" validation { condition = can(regex("^\\d+\\.\\d+$", var.k8s_version))