UNPKG

gen-jhipster

Version:

VHipster - Spring Boot + Angular/React/Vue in one handy generator

20 lines (19 loc) 687 B
import type { BaseKubernetesGenerator } from '../../kubernetes/generator.ts'; import type { WorkspacesApplication } from '../types.ts'; export { checkDocker } from '../../docker/support/index.ts'; /** * Check Images */ export declare const checkImages: (this: BaseKubernetesGenerator, { applications }: { applications: WorkspacesApplication[]; }) => { hasWarning: boolean; warningMessage: string; }; /** * Configure Image Names */ export declare const configureImageNames: import("../../base/tasks.js").SimpleTask<any, import("../../base/tasks.js").TaskParamWithControl & { applications: WorkspacesApplication[]; deployment: import("../types.ts").Deployment; }>;