diff --git a/lib/datasource/helm/index.ts b/lib/datasource/helm/index.ts
index 1c8df70e3eaefe6bcbe10ad75cb16ea6f4412982..4fe514a226bb3a06caac078eb843d7dc2736194f 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[]> {