Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Move bootstrap generator to Artifact Registry
  • Loading branch information
sergiitk committed Apr 9, 2024
commit 0ce1149c60735e66d37eab19f9b8d12fb6753174
2 changes: 1 addition & 1 deletion config/common.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--resource_prefix=psm-interop
--td_bootstrap_image=gcr.io/grpc-testing/td-grpc-bootstrap:2bf1b5ed00f852ffea8d24759c6fa673acc9ef10
--td_bootstrap_image=us-docker.pkg.dev/grpc-testing/trafficdirector/td-grpc-bootstrap:2bf1b5ed00f852ffea8d24759c6fa673acc9ef10

# The canonical implementation of the xDS test server.
# Can be used in tests where language-specific xDS test server does not exist,
Expand Down
6 changes: 4 additions & 2 deletions tests/bootstrap_generator_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@

# Constants
GCR_PROD: Final[str] = "gcr.io/trafficdirector-prod/td-grpc-bootstrap"
GCR_TESTING: Final[str] = "gcr.io/grpc-testing/td-grpc-bootstrap"
GCR_TESTING: Final[
str
] = "us-docker.pkg.dev/grpc-testing/trafficdirector/td-grpc-bootstrap"


# Returns a list of bootstrap generator versions to be tested along with their
Expand All @@ -64,7 +66,7 @@ def bootstrap_version_testcases() -> Sequence[dict[str, str]]:
#
# TODO: Figure out how to pass flags to the bootstrap generator via the
# client and server runners, and uncomment this version.
# ('v0.10.0', 'gcr.io/grpc-testing/td-grpc-bootstrap:66de7ea0e170351c9fae17232b81adbfb3e80ec3'),
# dict(version="v0.10.0", image=f"{GCR_PROD}:0.10.0"),
)


Expand Down