mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
18 lines
619 B
TypeScript
18 lines
619 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { HelmDatasource } from '../../datasource/helm';
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const displayName = 'Helm v2 Chart Dependencies';
|
|
export const url =
|
|
'https://v2.helm.sh/docs/developing_charts/#chart-dependencies';
|
|
export const categories: Category[] = ['helm', 'kubernetes'];
|
|
|
|
export const defaultConfig = {
|
|
registryAliases: {
|
|
stable: 'https://charts.helm.sh/stable',
|
|
},
|
|
commitMessageTopic: 'helm chart {{depName}}',
|
|
fileMatch: ['(^|/)requirements\\.ya?ml$'],
|
|
};
|
|
|
|
export const supportedDatasources = [HelmDatasource.id];
|