From 0be97db9ad28e5c0a4a756fa63d02b68f289b2e3 Mon Sep 17 00:00:00 2001 From: sgalsaleh <39952863+sgalsaleh@users.noreply.github.com> Date: Wed, 5 Feb 2025 00:54:35 +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 eae7f7d2a4..1f30f2423a 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.20250120.144907-r0' +MINIO_TAG='0.20250120.144907-r1' RQLITE_TAG='8.36.10-r0' DEX_TAG='2.41.1-r4' -SCHEMAHERO_TAG='0.17.13' +SCHEMAHERO_TAG='0.17.14' LVP_TAG='v0.6.7' \ No newline at end of file diff --git a/Makefile b/Makefile index b4f0b800c1..b1642ce4ae 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ include Makefile.build.mk CURRENT_USER := $(shell id -u -n) -MINIO_TAG ?= 0.20250120.144907-r0 +MINIO_TAG ?= 0.20250120.144907-r1 RQLITE_TAG ?= 8.36.10-r0 DEX_TAG ?= 2.41.1-r4 LVP_TAG ?= v0.6.7 diff --git a/migrations/Makefile b/migrations/Makefile index 586ad918bc..6c07239890 100644 --- a/migrations/Makefile +++ b/migrations/Makefile @@ -1,5 +1,5 @@ SHELL:=/bin/bash -SCHEMAHERO_TAG ?= 0.17.13 +SCHEMAHERO_TAG ?= 0.17.14 DOCKER_BUILD_ARGS ?= build_schema: diff --git a/pkg/image/constants.go b/pkg/image/constants.go index 5a20508603..645f7c9bdf 100644 --- a/pkg/image/constants.go +++ b/pkg/image/constants.go @@ -5,9 +5,9 @@ package image // image name. const ( - Minio = "kotsadm/minio:0.20250120.144907-r0" + Minio = "kotsadm/minio:0.20250120.144907-r1" Rqlite = "kotsadm/rqlite:8.36.10-r0" Dex = "kotsadm/dex:2.41.1-r4" - Schemahero = "schemahero/schemahero:0.17.13" + Schemahero = "schemahero/schemahero:0.17.14" Lvp = "replicated/local-volume-provider:v0.6.7" )