mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
18 lines
487 B
TypeScript
18 lines
487 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { DockerDatasource } from '../../datasource/docker';
|
|
import { KubernetesApiDatasource } from '../../datasource/kubernetes-api';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const url = 'https://kubernetes.io/docs';
|
|
export const categories: Category[] = ['kubernetes'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [],
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
DockerDatasource.id,
|
|
KubernetesApiDatasource.id,
|
|
];
|