Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Up test images to 23.2 vs 24.1 #389

Merged
merged 3 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
ghcr.io/ytsaurus/ytsaurus:stable-24.1.0 \
ghcr.io/ytsaurus/ytsaurus:stable-23.2.0 \
ghcr.io/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
ghcr.io/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 = "ghcr.io/ytsaurus/ytsaurus:stable-24.1.0"
CoreImageFirst = "ghcr.io/ytsaurus/ytsaurus:stable-23.2.0"
CoreImageSecond = "ghcr.io/ytsaurus/ytsaurus:stable-23.2.1"
)

var (
Expand Down
Loading