import { Taint } from './Taint';
/** Spec of each nodes in the pool */
export interface NodePoolTemplateSpec {
    /** Taints to apply to each nodes */
    taints: Taint[];
    /** If true, set nodes as un-schedulable */
    unschedulable: boolean;
}
//# sourceMappingURL=NodePoolTemplateSpec.d.ts.map