From 69b1a4e3a914d0e7442a61ce9b761db41eaf6bb2 Mon Sep 17 00:00:00 2001 From: dydx <25685+dydx@users.noreply.github.com> Date: Wed, 25 Dec 2024 04:07:19 +0000 Subject: [PATCH] Update KOTS image dependency tags --- .image.env | 8 ++++---- Makefile | 6 +++--- migrations/Makefile | 2 +- pkg/image/constants.go | 8 ++++---- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.image.env b/.image.env index 622dcce740..828df0b5cf 100644 --- a/.image.env +++ b/.image.env @@ -1,8 +1,8 @@ # Generated file, do not modify. This file is generated from a text file containing a list of images. The # most recent tag is interpolated from the source repository and used to generate a fully qualified image # name. -MINIO_TAG='0.20241107.005220-r0' -RQLITE_TAG='8.34.0-r0' -DEX_TAG='2.41.1-r1' -SCHEMAHERO_TAG='0.17.12' +MINIO_TAG='0.20241218.131544-r1' +RQLITE_TAG='8.36.2-r0' +DEX_TAG='2.41.1-r3' +SCHEMAHERO_TAG='0.17.13' LVP_TAG='v0.6.7' \ No newline at end of file diff --git a/Makefile b/Makefile index 0af03185c4..b274ecc660 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ include Makefile.build.mk CURRENT_USER := $(shell id -u -n) -MINIO_TAG ?= 0.20241107.005220-r0 -RQLITE_TAG ?= 8.34.0-r0 -DEX_TAG ?= 2.41.1-r1 +MINIO_TAG ?= 0.20241218.131544-r1 +RQLITE_TAG ?= 8.36.2-r0 +DEX_TAG ?= 2.41.1-r3 LVP_TAG ?= v0.6.7 PACT_PUBLISH_CONTRACT ?= false diff --git a/migrations/Makefile b/migrations/Makefile index 349746a23f..586ad918bc 100644 --- a/migrations/Makefile +++ b/migrations/Makefile @@ -1,5 +1,5 @@ SHELL:=/bin/bash -SCHEMAHERO_TAG ?= 0.17.12 +SCHEMAHERO_TAG ?= 0.17.13 DOCKER_BUILD_ARGS ?= build_schema: diff --git a/pkg/image/constants.go b/pkg/image/constants.go index a2ea8c7f6b..de0e45e644 100644 --- a/pkg/image/constants.go +++ b/pkg/image/constants.go @@ -5,9 +5,9 @@ package image // image name. const ( - Minio = "kotsadm/minio:0.20241107.005220-r0" - Rqlite = "kotsadm/rqlite:8.34.0-r0" - Dex = "kotsadm/dex:2.41.1-r1" - Schemahero = "schemahero/schemahero:0.17.12" + Minio = "kotsadm/minio:0.20241218.131544-r1" + Rqlite = "kotsadm/rqlite:8.36.2-r0" + Dex = "kotsadm/dex:2.41.1-r3" + Schemahero = "schemahero/schemahero:0.17.13" Lvp = "replicated/local-volume-provider:v0.6.7" )