This is an automated email from the ASF dual-hosted git repository. qianzhang pushed a commit to branch 1.5.x in repository https://gitbox.apache.org/repos/asf/mesos.git
commit a0772ea7ae4b22e81ecbb87bc85b6304b30daec3 Author: Gilbert Song <[email protected]> AuthorDate: Fri Mar 22 10:37:46 2019 -0700 Added gcr registry test. Review: https://reviews.apache.org/r/70291 --- src/tests/containerizer/provisioner_docker_tests.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/tests/containerizer/provisioner_docker_tests.cpp b/src/tests/containerizer/provisioner_docker_tests.cpp index 976cc7e..dfe8fa8 100644 --- a/src/tests/containerizer/provisioner_docker_tests.cpp +++ b/src/tests/containerizer/provisioner_docker_tests.cpp @@ -492,15 +492,18 @@ TEST_F(ProvisionerDockerTest, ROOT_LocalPullerSimpleCommand) // when specifying the repository name (e.g., 'busybox'). The registry // puller normalize docker official images if necessary. INSTANTIATE_TEST_CASE_P( - ImageAlpine, + ContainerImage, ProvisionerDockerTest, ::testing::ValuesIn(vector<string>({ "alpine", // Verifies the normalization of the Docker repository name. "library/alpine", + "gcr.io/google-containers/busybox:1.24", // manifest.v1+prettyjws + "gcr.io/google-containers/busybox:1.27", // manifest.v2+json // TODO(alexr): The registry below is unreliable and hence disabled. // Consider re-enabling shall it become more stable. // "registry.cn-hangzhou.aliyuncs.com/acs-sample/alpine", - "quay.io/coreos/alpine-sh"}))); + "quay.io/coreos/alpine-sh" // manifest.v1+prettyjws + }))); // TODO(jieyu): This is a ROOT test because of MESOS-4757. Remove the
