renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
24 lines (23 loc) • 462 B
TypeScript
export interface Image {
name: string;
newTag?: string;
newName?: string;
digest?: string;
}
export interface HelmChart {
name: string;
repo: string;
version: string;
}
export interface HelmGlobals {
chartHome?: string;
}
export interface Kustomize {
kind?: string;
bases?: string[];
resources?: string[];
components?: string[];
images?: Image[];
helmCharts?: HelmChart[];
helmGlobals?: HelmGlobals;
}