UNPKG

@gati-framework/cli

Version:

CLI tool for Gati framework - create, develop, build and deploy cloud-native applications

27 lines 755 B
/** * @module cli/deployment/local * @description Local Kubernetes deployment executor (kind first approach) */ import type { DeploymentEnvironment } from './types.js'; export interface LocalDeployOptions { appName: string; namespace: string; env: DeploymentEnvironment; imageTag?: string; clusterName?: string; workingDir: string; skipCluster?: boolean; dryRun?: boolean; healthCheckPath?: string; portForward?: boolean; timeoutSeconds?: number; autoTag?: boolean; port?: number; replicas?: number; verbose?: boolean; } /** * Execute a full local deployment flow */ export declare function executeLocalDeploy(options: LocalDeployOptions): Promise<void>; //# sourceMappingURL=local.d.ts.map