From cec21cd5fb2cfc1d713dffb233651639930a55a3 Mon Sep 17 00:00:00 2001 From: dydx <25685+dydx@users.noreply.github.com> Date: Sat, 9 Nov 2024 04:06:40 +0000 Subject: [PATCH] Update KOTS image dependency tags --- .image.env | 6 +++--- Makefile | 4 ++-- migrations/Makefile | 2 +- pkg/image/constants.go | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.image.env b/.image.env index 066bed3432..f991cddedf 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.20241029.160148-r1' -RQLITE_TAG='8.32.7-r0' +MINIO_TAG='0.20241107.005220-r0' +RQLITE_TAG='8.33.0-r0' DEX_TAG='2.41.1-r1' -SCHEMAHERO_TAG='0.17.10' +SCHEMAHERO_TAG='0.17.12' LVP_TAG='v0.6.7' \ No newline at end of file diff --git a/Makefile b/Makefile index a8b1ea573b..567ba976e3 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ include Makefile.build.mk CURRENT_USER := $(shell id -u -n) -MINIO_TAG ?= 0.20241029.160148-r1 -RQLITE_TAG ?= 8.32.7-r0 +MINIO_TAG ?= 0.20241107.005220-r0 +RQLITE_TAG ?= 8.33.0-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 128138666b..360143828b 100644 --- a/migrations/Makefile +++ b/migrations/Makefile @@ -1,5 +1,5 @@ SHELL:=/bin/bash -SCHEMAHERO_TAG ?= 0.17.10 +SCHEMAHERO_TAG ?= 0.17.12 DOCKER_BUILD_ARGS ?= build_schema: diff --git a/pkg/image/constants.go b/pkg/image/constants.go index 1c9146a5b2..a21c89702d 100644 --- a/pkg/image/constants.go +++ b/pkg/image/constants.go @@ -5,9 +5,9 @@ package image // image name. const ( - Minio = "kotsadm/minio:0.20241029.160148-r1" - Rqlite = "kotsadm/rqlite:8.32.7-r0" + Minio = "kotsadm/minio:0.20241107.005220-r0" + Rqlite = "kotsadm/rqlite:8.33.0-r0" Dex = "kotsadm/dex:2.41.1-r1" - Schemahero = "schemahero/schemahero:0.17.10" + Schemahero = "schemahero/schemahero:0.17.12" Lvp = "replicated/local-volume-provider:v0.6.7" )