UNPKG

@storm-software/k8s-tools

Version:

Tools for managing Kubernetes (k8s) infrastructure within a Nx workspace.

15 lines (12 loc) 426 B
import { BaseGeneratorSchema } from "@storm-software/workspace-tools/base/base-generator.schema.d"; export interface HelmChartGeneratorSchema extends BaseGeneratorSchema { /** Name of the chart */ name: string; /** Name of the project to add the chart to */ project: string; /** Folder to store the chart */ chartFolder?: string; /** Format the generated chart */ format?: boolean; [k: string]: unknown; }