mirror of https://github.com/harness/drone.git
[fix]: [AH-487]: added oci prefix in helm pull command (#2968)
* [fix]: [AH-487]: added oci prefix in helm commandpull/3586/head
parent
d4c7f6930c
commit
0f4df14661
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue