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

Use Docker images from ghcr.io/vmware-tanzu #818

Merged
merged 1 commit into from
Oct 3, 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
2 changes: 1 addition & 1 deletion hack/check/check-mdlint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
2 changes: 1 addition & 1 deletion test/e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading