diff --git a/hack/check/check-mdlint.sh b/hack/check/check-mdlint.sh index 3f27d449c..b44d787da 100755 --- a/hack/check/check-mdlint.sh +++ b/hack/check/check-mdlint.sh @@ -16,6 +16,6 @@ cd "$(dirname "${BASH_SOURCE[0]}")/../.." # Additional configuration can be found in the .markdownlintrc file at # the root of the repo. docker run --rm -v "$(pwd)":/build \ - gcr.io/eminent-nation-87317/tanzu-cli/ci-images/mdlint:0.23.2 /md/lint \ + ghcr.io/vmware-tanzu/tanzu-cli/ci-images/mdlint:0.23.2 /md/lint \ -i docs/cli/commands \ -i **/CHANGELOG.md . diff --git a/test/e2e/Makefile b/test/e2e/Makefile index 2605422f1..17874f9ad 100644 --- a/test/e2e/Makefile +++ b/test/e2e/Makefile @@ -17,7 +17,7 @@ TANZU_CLI_TMC_UNSTABLE_URL = "" endif ifndef TANZU_CLI_E2E_TEST_CENTRAL_REPO_URL -TANZU_CLI_E2E_TEST_CENTRAL_REPO_URL = gcr.io/eminent-nation-87317/tanzu-cli/test/v1/plugins/plugin-inventory:latest +TANZU_CLI_E2E_TEST_CENTRAL_REPO_URL = ghcr.io/vmware-tanzu/tanzu-cli/test/v1/plugins/plugin-inventory:latest endif ifndef TANZU_CLI_E2E_TEST_LOCAL_CENTRAL_REPO_HOST diff --git a/test/e2e/README.md b/test/e2e/README.md index 7b63510d8..e0013c3bd 100644 --- a/test/e2e/README.md +++ b/test/e2e/README.md @@ -243,7 +243,7 @@ the current CLI supports all older plugins and all plugins We have created a github repository `https://github.com/chandrareddyp/tanzu-cli-test-plugins` to host test plugins with different CLI Runtime versions which supported by current CLI Core, and -these test plugins are published manually to gcr.io/eminent-nation-87317/tanzu-cli/test/v1/plugins/plugin-inventory:latest +these test plugins are published manually to ghcr.io/vmware-tanzu/tanzu-cli/test/v1/plugins/plugin-inventory:latest using publish tooling, these test plugins used during e2e plugin compatibility test execution. ## How and when E2E tests are executed diff --git a/test/e2e/plugins_compatibility/plugins_compatibility_test.go b/test/e2e/plugins_compatibility/plugins_compatibility_test.go index 9c5cfd35a..ffe149a52 100644 --- a/test/e2e/plugins_compatibility/plugins_compatibility_test.go +++ b/test/e2e/plugins_compatibility/plugins_compatibility_test.go @@ -24,7 +24,7 @@ import ( // Each test plugin built using specific Tanzu CLI Runtime library versions. // Here are sequence of test cases in below suite: // a. Before installing test plugins, uninstall test plugins (if any installed already) and verify status using plugin list -// b. install all test plugins from repo gcr.io/eminent-nation-87317/tanzu-cli/test/v1/plugins/plugin-inventory:latest +// b. install all test plugins from repo ghcr.io/vmware-tanzu/tanzu-cli/test/v1/plugins/plugin-inventory:latest // c. list all plugins and make sure all above installed test plugins are listed with status "installed" // d. run basic commands on installed test plugins, to make sure works/co-exists with other plugins build with different runtime version // e. run hello-world commands on installed test plugins, to make sure works/co-exists with other plugins build with different runtime version