kubernetes-models
Version:
30 lines (29 loc) • 1.94 kB
TypeScript
import { IIoK8sApimachineryPkgUtilIntstrIntOrString } from "@kubernetes-models/apimachinery/util/intstr/IntOrString";
import { IIoK8sApimachineryPkgApisMetaV1LabelSelector } from "@kubernetes-models/apimachinery/apis/meta/v1/LabelSelector";
import { Model } from "@kubernetes-models/base";
/**
* PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.
*/
export interface IPodDisruptionBudgetSpec {
/**
* An eviction is allowed if at most "maxUnavailable" pods selected by "selector" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with "minAvailable".
*/
"maxUnavailable"?: IIoK8sApimachineryPkgUtilIntstrIntOrString;
/**
* An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%".
*/
"minAvailable"?: IIoK8sApimachineryPkgUtilIntstrIntOrString;
/**
* Label query over pods whose evictions are managed by the disruption budget. A null selector will match no pods, while an empty ({}) selector will select all pods within the namespace.
*/
"selector"?: IIoK8sApimachineryPkgApisMetaV1LabelSelector;
}
/**
* PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.
*/
export declare class PodDisruptionBudgetSpec extends Model<IPodDisruptionBudgetSpec> implements IPodDisruptionBudgetSpec {
"maxUnavailable"?: IIoK8sApimachineryPkgUtilIntstrIntOrString;
"minAvailable"?: IIoK8sApimachineryPkgUtilIntstrIntOrString;
"selector"?: IIoK8sApimachineryPkgApisMetaV1LabelSelector;
}
export { IPodDisruptionBudgetSpec as IIoK8sApiPolicyV1PodDisruptionBudgetSpec, PodDisruptionBudgetSpec as IoK8sApiPolicyV1PodDisruptionBudgetSpec };