fix(helm): default registryUrls (#6231)

This commit is contained in:
Rhys Arkins 2020-05-14 13:18:58 +02:00 committed by GitHub
parent 8144f07b69
commit daba153ba3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,10 @@ export const id = 'helm';
const http = new Http(id); const http = new Http(id);
export const defaultRegistryUrls = [
'https://kubernetes-charts.storage.googleapis.com/',
];
export async function getRepositoryData( export async function getRepositoryData(
repository: string repository: string
): Promise<ReleaseResult[]> { ): Promise<ReleaseResult[]> {