import { TaintEffectEnum } from './TaintEffectEnum';
/** Kubernetes taint object */
export interface Taint {
    /** The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute */
    effect: TaintEffectEnum;
    /** The taint key to be applied to a node */
    key: string;
    /** The taint value corresponding to the taint key */
    value: string;
}
//# sourceMappingURL=Taint.d.ts.map