Skip to content

Commit

Permalink
Up test images to 23.2 vs 24.1
Browse files Browse the repository at this point in the history
  • Loading branch information
savnadya committed Nov 12, 2024
1 parent eae8949 commit e0cda4d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -208,16 +208,16 @@ kind-delete-local-registry: ## Delete local docker registry.
rm -fr "${REGISTRY_CONFIG_DIR}/${REGISTRY_LOCAL_ADDR}"

TEST_IMAGES = \
ytsaurus/ytsaurus-nightly:dev-23.1-28ccaedbf353b870bedafb6e881ecf386a0a3779 \
ytsaurus/ytsaurus-nightly:dev-23.1-9779e0140ff73f5a786bd5362313ef9a74fcd0de \
ytsaurus/ytsaurus-nightly:dev-23.2-9c50056eacfa4fe213798a5b9ee828ae3acb1bca
ytsaurus/ytsaurus:stable-24.1.0 \
ytsaurus/ytsaurus:stable-23.2.0 \
ytsaurus/ytsaurus:stable-23.2.1

.PHONY: kind-load-test-images
kind-load-test-images:
$(foreach img,$(TEST_IMAGES),docker pull -q $(img) && $(KIND) load docker-image --name $(KIND_CLUSTER_NAME) $(img);)

SAMPLE_IMAGES = \
ytsaurus/ytsaurus:stable-23.1.0-relwithdebinfo
ytsaurus/ytsaurus:stable-24.1.0-relwithdebinfo
.PHONY: kind-load-sample-images
kind-load-sample-images:
$(foreach img,$(SAMPLE_IMAGES),docker pull -q $(img) && $(KIND) load docker-image --name $(KIND_CLUSTER_NAME) $(img);)
Expand Down
6 changes: 3 additions & 3 deletions pkg/testutil/spec_builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ const (
RemoteResourceName = "tst-rmt"
// Images should be in sync with TEST_IMAGES variable in Makefile
// todo: come up with a more elegant solution
CoreImageFirst = "ytsaurus/ytsaurus-nightly:dev-23.1-9779e0140ff73f5a786bd5362313ef9a74fcd0de"
CoreImageSecond = "ytsaurus/ytsaurus-nightly:dev-23.1-28ccaedbf353b870bedafb6e881ecf386a0a3779"
CoreImageNextVer = "ytsaurus/ytsaurus-nightly:dev-23.2-9c50056eacfa4fe213798a5b9ee828ae3acb1bca"
CoreImageNextVer = "ytsaurus/ytsaurus:stable-24.1.0"
CoreImageFirst = "ytsaurus/ytsaurus:stable-23.2.0"
CoreImageSecond = "ytsaurus/ytsaurus:stable-23.2.1"
)

var (
Expand Down

0 comments on commit e0cda4d

Please sign in to comment.