mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
21 lines
724 B
TypeScript
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];
|