From daba153ba3d927e44918b435e9128ea240e70e23 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Thu, 14 May 2020 13:18:58 +0200 Subject: [PATCH] fix(helm): default registryUrls (#6231) --- lib/datasource/helm/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/datasource/helm/index.ts b/lib/datasource/helm/index.ts index 1c8df70e3e..4fe514a226 100644 --- a/lib/datasource/helm/index.ts +++ b/lib/datasource/helm/index.ts @@ -9,6 +9,10 @@ export const id = 'helm'; const http = new Http(id); +export const defaultRegistryUrls = [ + 'https://kubernetes-charts.storage.googleapis.com/', +]; + export async function getRepositoryData( repository: string ): Promise<ReleaseResult[]> { -- GitLab