renovate/lib/modules/manager/helm-requirements/index.ts

19 lines
619 B
TypeScript
Raw Normal View History

import type { Category } from '../../../constants';
import { HelmDatasource } from '../../datasource/helm';
2019-11-29 00:54:52 -07:00
export { extractPackageFile } from './extract';
2020-02-07 11:25:27 -07:00
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'];
2020-02-07 11:25:27 -07:00
export const defaultConfig = {
registryAliases: {
stable: 'https://charts.helm.sh/stable',
2020-02-07 11:25:27 -07:00
},
commitMessageTopic: 'helm chart {{depName}}',
fileMatch: ['(^|/)requirements\\.ya?ml$'],
2020-02-07 11:25:27 -07:00
};
export const supportedDatasources = [HelmDatasource.id];