From cc48115350ef60cb5f8c567928a09391945be41f Mon Sep 17 00:00:00 2001 From: xudong liu Date: Wed, 26 Jun 2024 13:19:23 +0530 Subject: [PATCH] change ci tooling releated image to own registry Signed-off-by: xudong liu --- hack/check-mdlint.sh | 2 +- hack/check-shell.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/check-mdlint.sh b/hack/check-mdlint.sh index 2ae805b62..d6b912bde 100755 --- a/hack/check-mdlint.sh +++ b/hack/check-mdlint.sh @@ -23,4 +23,4 @@ set -o pipefail cd "$(dirname "${BASH_SOURCE[0]}")/.." docker run --rm -v "$(pwd)":/build \ - gcr.io/cluster-api-provider-vsphere/extra/mdlint:0.17.0 /md/lint -i vendor -i docs/book/node_modules . + gcr.io/k8s-staging-cloud-pv-vsphere/extra/mdlint:0.17.0 /md/lint -i vendor -i docs/book/node_modules . diff --git a/hack/check-shell.sh b/hack/check-shell.sh index 1a2cea05a..08940a9d8 100755 --- a/hack/check-shell.sh +++ b/hack/check-shell.sh @@ -54,5 +54,5 @@ shift $((OPTIND-1)) if [ ! "${DO_DOCKER-}" ] && command -v shellcheck >/dev/null 2>&1; then find . -path ./vendor -prune -o -name "*.*sh" -type f -print0 | xargs -0 shellcheck else - docker run --rm -t -v "$(pwd)":/build:ro gcr.io/cluster-api-provider-vsphere/extra/shellcheck + docker run --rm -t -v "$(pwd)":/build:ro gcr.io/k8s-staging-cloud-pv-vsphere/extra/shellcheck fi