From c88d1668a70f23ab87dad6c159ef051d195a5678 Mon Sep 17 00:00:00 2001 From: dydx <25685+dydx@users.noreply.github.com> Date: Tue, 10 Dec 2024 04:07:07 +0000 Subject: [PATCH] Update KOTS image dependency tags --- .image.env | 4 ++-- Makefile | 2 +- migrations/Makefile | 2 +- pkg/image/constants.go | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.image.env b/.image.env index 622dcce740..f9b308857f 100644 --- a/.image.env +++ b/.image.env @@ -2,7 +2,7 @@ # 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' +RQLITE_TAG='8.34.3-r0' DEX_TAG='2.41.1-r1' -SCHEMAHERO_TAG='0.17.12' +SCHEMAHERO_TAG='0.17.13' LVP_TAG='v0.6.7' \ No newline at end of file diff --git a/Makefile b/Makefile index 8e03a180b9..5d5f6d5f0e 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ include Makefile.build.mk CURRENT_USER := $(shell id -u -n) MINIO_TAG ?= 0.20241107.005220-r0 -RQLITE_TAG ?= 8.34.0-r0 +RQLITE_TAG ?= 8.34.3-r0 DEX_TAG ?= 2.41.1-r1 LVP_TAG ?= v0.6.7 PACT_PUBLISH_CONTRACT ?= false diff --git a/migrations/Makefile b/migrations/Makefile index 360143828b..4c9c17c3e8 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..e91c4a3067 100644 --- a/pkg/image/constants.go +++ b/pkg/image/constants.go @@ -6,8 +6,8 @@ package image const ( Minio = "kotsadm/minio:0.20241107.005220-r0" - Rqlite = "kotsadm/rqlite:8.34.0-r0" + Rqlite = "kotsadm/rqlite:8.34.3-r0" Dex = "kotsadm/dex:2.41.1-r1" - Schemahero = "schemahero/schemahero:0.17.12" + Schemahero = "schemahero/schemahero:0.17.13" Lvp = "replicated/local-volume-provider:v0.6.7" )