diff --git a/.image.env b/.image.env index cb5fd3bde3..38950a2f16 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='RELEASE.2023-11-11T08-14-41Z' -RQLITE_TAG='7.21.4' +MINIO_TAG='RELEASE.2023-12-07T04-16-00Z' +RQLITE_TAG='8.0.0' DEX_TAG='v2.37.0' -SCHEMAHERO_TAG='0.16.0' +SCHEMAHERO_TAG='0.17.0' LVP_TAG='v0.5.5' \ No newline at end of file diff --git a/Makefile b/Makefile index b2c6216431..ee76df3d77 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ include Makefile.build.mk CURRENT_USER := $(shell id -u -n) -MINIO_TAG ?= RELEASE.2023-11-11T08-14-41Z -RQLITE_TAG ?= 7.21.4 +MINIO_TAG ?= RELEASE.2023-12-07T04-16-00Z +RQLITE_TAG ?= 8.0.0 DEX_TAG ?= v2.37.0 LVP_TAG ?= v0.5.5 diff --git a/migrations/Makefile b/migrations/Makefile index 011acb5480..0522a4eed3 100644 --- a/migrations/Makefile +++ b/migrations/Makefile @@ -1,7 +1,7 @@ SHELL:=/bin/bash PROJECT_NAME ?= kotsadm-migrations -RQLITE_TAG ?= 7.21.4 -SCHEMAHERO_TAG ?= 0.16.0 +RQLITE_TAG ?= 8.0.0 +SCHEMAHERO_TAG ?= 0.17.0 .PHONY: schema-alpha schema-alpha: IMAGE = kotsadm/${PROJECT_NAME}:alpha diff --git a/pkg/image/constants.go b/pkg/image/constants.go index f1b491f53d..4707a27bc5 100644 --- a/pkg/image/constants.go +++ b/pkg/image/constants.go @@ -5,9 +5,9 @@ package image // image name. const ( - Minio = "minio/minio:RELEASE.2023-11-11T08-14-41Z" - Rqlite = "rqlite/rqlite:7.21.4" + Minio = "minio/minio:RELEASE.2023-12-07T04-16-00Z" + Rqlite = "rqlite/rqlite:8.0.0" Dex = "ghcr.io/dexidp/dex:v2.37.0" - Schemahero = "schemahero/schemahero:0.16.0" + Schemahero = "schemahero/schemahero:0.17.0" Lvp = "replicated/local-volume-provider:v0.5.5" )