Skip to content

Commit

Permalink
use 0.20231101-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Dec 2, 2023
1 parent 10cea19 commit e049a6a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@ jobs:

- name: push minio for e2e
run: |
docker pull cgr.dev/chainguard/minio:latest-dev
docker tag cgr.dev/chainguard/minio:latest-dev ttl.sh/automated-${{ github.run_id }}/minio:latest-dev
docker push ttl.sh/automated-${{ github.run_id }}/minio:latest-dev
docker pull cgr.dev/chainguard/minio:${{ steps.dotenv.outputs.minio_tag }}
docker tag cgr.dev/chainguard/minio:${{ steps.dotenv.outputs.minio_tag }} ttl.sh/automated-${{ github.run_id }}/minio:${{ steps.dotenv.outputs.minio_tag }}
docker push ttl.sh/automated-${{ github.run_id }}/minio:${{ steps.dotenv.outputs.minio_tag }}
push-rqlite:
Expand Down
2 changes: 1 addition & 1 deletion .image.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 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.20231025-dev'
MINIO_TAG='0.20231101-dev'
RQLITE_TAG='7.21.4'
DEX_TAG='2.37.0'
SCHEMAHERO_TAG='0.16.0'
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include Makefile.build.mk
CURRENT_USER := $(shell id -u -n)
MINIO_TAG ?= 0.20231025-dev
MINIO_TAG ?= 0.20231101-dev
RQLITE_TAG ?= 7.21.4
DEX_TAG ?= 2.37.0
LVP_TAG ?= v0.5.5
Expand Down
2 changes: 1 addition & 1 deletion pkg/image/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package image
// image name.

const (
Minio = "cgr.dev/chainguard/minio:0.20231025-dev"
Minio = "cgr.dev/chainguard/minio:0.20231101-dev"
Rqlite = "cgr.dev/chainguard/rqlite:7.21.4"
Dex = "cgr.dev/chainguard/dex:2.37.0"
Schemahero = "schemahero/schemahero:0.16.0"
Expand Down
6 changes: 2 additions & 4 deletions pkg/kotsadm/objects/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ func GetAdminConsoleImage(deployOptions types.DeployOptions, imageKey string) st

func GetAdminConsoleImages(deployOptions types.DeployOptions) map[string]string {
// TODO: Add error handling to this function
// minioTag, _ := image.GetTag(image.Minio)
minioTag := "latest-dev"
minioTag, _ := image.GetTag(image.Minio)
rqliteTag, _ := image.GetTag(image.Rqlite)
dexTag, _ := image.GetTag(image.Dex)

Expand Down Expand Up @@ -44,8 +43,7 @@ func GetAdminConsoleImages(deployOptions types.DeployOptions) map[string]string
}

func GetOriginalAdminConsoleImages(deployOptions types.DeployOptions) map[string]string {
// minioTag, _ := image.GetTag(image.Minio)
minioTag := "latest-dev"
minioTag, _ := image.GetTag(image.Minio)
rqliteTag, _ := image.GetTag(image.Rqlite)
dexTag, _ := image.GetTag(image.Dex)

Expand Down

0 comments on commit e049a6a

Please sign in to comment.