From f1daa04c7613ad90e503acb8bd6b34d0301772f7 Mon Sep 17 00:00:00 2001 From: replicated-ci-kots <91219917+replicated-ci-kots@users.noreply.github.com> Date: Wed, 31 Jan 2024 18:05:48 +0000 Subject: [PATCH] Update KOTS image dependency tags (#4414) Co-authored-by: dydx --- .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 89be2d9375..38a4093a6c 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.20231220.010002-r2' -RQLITE_TAG='8.18.3-r0' +RQLITE_TAG='8.18.5-r0' DEX_TAG='2.38.0-r0' -SCHEMAHERO_TAG='0.17.2' +SCHEMAHERO_TAG='0.17.3' LVP_TAG='v0.6.0' \ No newline at end of file diff --git a/Makefile b/Makefile index 7a866462ce..9130cba8f2 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ include Makefile.build.mk CURRENT_USER := $(if $(GITHUB_USER),$(GITHUB_USER),$(shell id -u -n)) MINIO_TAG ?= 0.20231220.010002-r2 -RQLITE_TAG ?= 8.18.3-r0 +RQLITE_TAG ?= 8.18.5-r0 DEX_TAG ?= 2.38.0-r0 LVP_TAG ?= v0.6.0 diff --git a/migrations/Makefile b/migrations/Makefile index dfcf4305c6..14c3c1ff80 100644 --- a/migrations/Makefile +++ b/migrations/Makefile @@ -1,5 +1,5 @@ SHELL:=/bin/bash -SCHEMAHERO_TAG ?= 0.17.2 +SCHEMAHERO_TAG ?= 0.17.3 build_schema: docker build --pull --build-arg SCHEMAHERO_TAG=${SCHEMAHERO_TAG} -f deploy/Dockerfile -t ${IMAGE} . diff --git a/pkg/image/constants.go b/pkg/image/constants.go index f5a6cd9ff9..0cf811ccff 100644 --- a/pkg/image/constants.go +++ b/pkg/image/constants.go @@ -6,8 +6,8 @@ package image const ( Minio = "kotsadm/minio:0.20231220.010002-r2" - Rqlite = "kotsadm/rqlite:8.18.3-r0" + Rqlite = "kotsadm/rqlite:8.18.5-r0" Dex = "kotsadm/dex:2.38.0-r0" - Schemahero = "schemahero/schemahero:0.17.2" + Schemahero = "schemahero/schemahero:0.17.3" Lvp = "replicated/local-volume-provider:v0.6.0" )