diff --git a/registry/app/api/controller/metadata/utils.go b/registry/app/api/controller/metadata/utils.go index f4bb9ac2f..1da22fe4b 100644 --- a/registry/app/api/controller/metadata/utils.go +++ b/registry/app/api/controller/metadata/utils.go @@ -354,7 +354,7 @@ func GetDockerPullCommand( } func GetHelmPullCommand(image string, tag string, registryURL string) string { - return "helm install " + GetRepoURLWithoutProtocol(registryURL) + "/" + image + ":" + tag + return "helm pull oci://" + GetRepoURLWithoutProtocol(registryURL) + "/" + image + ":" + tag } // CleanURLPath removes leading and trailing spaces and trailing slashes from the given URL string.