@storm-software/k8s-tools
Version:
Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.
19 lines (16 loc) • 557 B
TypeScript
import { BaseGeneratorSchema } from "@storm-software/workspace-tools/base/base-generator.schema.d";
export interface HelmDependencyGeneratorSchema extends BaseGeneratorSchema {
/** Project name */
project: string;
/** Chart Name of the Dependency */
chartName?: string;
/** Chart Version of the Dependency */
chartVersion?: string;
/** Repository of the Dependency */
repository: string;
/** Repository Name of the Dependency */
repositoryName: string;
/** Format the generated files */
format?: boolean;
[k: string]: unknown;
}