2023-07-04 03:41:19 -06:00
|
|
|
import type { Category } from '../../../constants';
|
2022-01-19 01:06:21 -07:00
|
|
|
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
|
|
|
|
2024-12-01 01:47: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 = {
|
2022-06-09 23:14:49 -06:00
|
|
|
registryAliases: {
|
2021-01-11 07:16:33 -07:00
|
|
|
stable: 'https://charts.helm.sh/stable',
|
2020-02-07 11:25:27 -07:00
|
|
|
},
|
|
|
|
commitMessageTopic: 'helm chart {{depName}}',
|
2023-05-24 13:48:01 -06:00
|
|
|
fileMatch: ['(^|/)requirements\\.ya?ml$'],
|
2020-02-07 11:25:27 -07:00
|
|
|
};
|
2022-01-19 01:06:21 -07:00
|
|
|
|
|
|
|
export const supportedDatasources = [HelmDatasource.id];
|