0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 21:48:32 +00:00
renovatebot_renovate/lib/modules/manager/helmfile/index.ts
Risu 397ab49ef3
docs(managers): add missing url and displayName (#32621)
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
2024-12-01 08:47:27 +00:00

21 lines
724 B
TypeScript

import type { Category } from '../../../constants';
import { DockerDatasource } from '../../datasource/docker';
import { HelmDatasource } from '../../datasource/helm';
export { extractPackageFile } from './extract';
export { updateArtifacts } from './artifacts';
export const supportsLockFileMaintenance = true;
export const url = 'https://helmfile.readthedocs.io';
export const categories: Category[] = ['cd', 'helm', 'kubernetes'];
export const defaultConfig = {
registryAliases: {
stable: 'https://charts.helm.sh/stable',
},
commitMessageTopic: 'helm chart {{depName}}',
fileMatch: ['(^|/)helmfile\\.ya?ml(?:\\.gotmpl)?$'],
};
export const supportedDatasources = [HelmDatasource.id, DockerDatasource.id];