renovate/lib/modules/manager/helmfile/index.ts

20 lines
670 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 defaultConfig = {
registryAliases: {
stable: 'https://charts.helm.sh/stable',
},
commitMessageTopic: 'helm chart {{depName}}',
fileMatch: ['(^|/)helmfile\\.ya?ml(?:\\.gotmpl)?$'],
};
export const categories: Category[] = ['cd', 'helm', 'kubernetes'];
export const supportedDatasources = [HelmDatasource.id, DockerDatasource.id];