UNPKG

@atomist/sdm

Version:

Atomist Software Delivery Machine SDK

16 lines 797 B
import { SoftwareDeliveryMachine } from "../../../api/machine/SoftwareDeliveryMachine"; import { CommandHandlerRegistration } from "../../../api/registration/CommandHandlerRegistration"; export declare class KubernetesUndeployParameters { name: string; ns: string; } /** * Safely remove all resources related to a Kubernetes application. * * If the SDM configuration says this packs commands should be added, * i.e., `sdm.configuration.sdm.k8s.options.addCommands` is `true`, * the command will have the intent `kube undeploy SDM_NAME`. * Otherwise the command will be registered without an intent. */ export declare function kubernetesUndeploy(sdm: SoftwareDeliveryMachine): CommandHandlerRegistration<KubernetesUndeployParameters>; //# sourceMappingURL=kubernetesUndeploy.d.ts.map