From 1b0ceff127b1fa40cc8e49e9f39a9fc0ac88ccb2 Mon Sep 17 00:00:00 2001 From: replicated-ci-kots <91219917+replicated-ci-kots@users.noreply.github.com> Date: Thu, 7 Mar 2024 06:07:47 +0000 Subject: [PATCH] Update KOTS image dependency tags (#4494) 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 60374865e0..fd483394ee 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.20231220.010002-r2' -RQLITE_TAG='8.22.2-r0' -DEX_TAG='2.38.0-r0' +MINIO_TAG='0.20231220.010002-r3' +RQLITE_TAG='8.22.2-r1' +DEX_TAG='2.38.0-r1' SCHEMAHERO_TAG='0.17.5' LVP_TAG='v0.6.1' \ No newline at end of file diff --git a/Makefile b/Makefile index 88a6a94e52..91a14abd03 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.20231220.010002-r2 -RQLITE_TAG ?= 8.22.2-r0 -DEX_TAG ?= 2.38.0-r0 +MINIO_TAG ?= 0.20231220.010002-r3 +RQLITE_TAG ?= 8.22.2-r1 +DEX_TAG ?= 2.38.0-r1 LVP_TAG ?= v0.6.1 define sendMetrics diff --git a/pkg/image/constants.go b/pkg/image/constants.go index aed55690d7..2c1827e092 100644 --- a/pkg/image/constants.go +++ b/pkg/image/constants.go @@ -5,9 +5,9 @@ package image // image name. const ( - Minio = "kotsadm/minio:0.20231220.010002-r2" - Rqlite = "kotsadm/rqlite:8.22.2-r0" - Dex = "kotsadm/dex:2.38.0-r0" + Minio = "kotsadm/minio:0.20231220.010002-r3" + Rqlite = "kotsadm/rqlite:8.22.2-r1" + Dex = "kotsadm/dex:2.38.0-r1" Schemahero = "schemahero/schemahero:0.17.5" Lvp = "replicated/local-volume-provider:v0.6.1" )