From a95df26eb2ac46aaa3564a6f3fdad248cf5289ea Mon Sep 17 00:00:00 2001 From: replicated-ci-kots <91219917+replicated-ci-kots@users.noreply.github.com> Date: Wed, 3 Jul 2024 12:09:10 +0000 Subject: [PATCH] Update KOTS image dependency tags (#4738) Co-authored-by: dydx <25685+dydx@users.noreply.github.com> --- .image.env | 6 +++--- Makefile | 6 +++--- pkg/image/constants.go | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.image.env b/.image.env index d8df6211c9..5dc5569370 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.20240629.012047-r0' -RQLITE_TAG='8.26.3-r0' -DEX_TAG='2.40.0-r1' +MINIO_TAG='0.20240629.012047-r1' +RQLITE_TAG='8.26.3-r1' +DEX_TAG='2.40.0-r2' SCHEMAHERO_TAG='0.17.9' LVP_TAG='v0.6.6' \ No newline at end of file diff --git a/Makefile b/Makefile index 72ba4234d7..187480a3f4 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ include Makefile.build.mk CURRENT_USER := $(if $(GITHUB_USER),$(GITHUB_USER),$(shell id -u -n)) -MINIO_TAG ?= 0.20240629.012047-r0 -RQLITE_TAG ?= 8.26.3-r0 -DEX_TAG ?= 2.40.0-r1 +MINIO_TAG ?= 0.20240629.012047-r1 +RQLITE_TAG ?= 8.26.3-r1 +DEX_TAG ?= 2.40.0-r2 LVP_TAG ?= v0.6.6 define sendMetrics diff --git a/pkg/image/constants.go b/pkg/image/constants.go index b3746357d2..b2de545530 100644 --- a/pkg/image/constants.go +++ b/pkg/image/constants.go @@ -5,9 +5,9 @@ package image // image name. const ( - Minio = "kotsadm/minio:0.20240629.012047-r0" - Rqlite = "kotsadm/rqlite:8.26.3-r0" - Dex = "kotsadm/dex:2.40.0-r1" + Minio = "kotsadm/minio:0.20240629.012047-r1" + Rqlite = "kotsadm/rqlite:8.26.3-r1" + Dex = "kotsadm/dex:2.40.0-r2" Schemahero = "schemahero/schemahero:0.17.9" Lvp = "replicated/local-volume-provider:v0.6.6" )