/** * @module policy/v1beta1 * @internal */ import { DeleteOptions as _DeleteOptions_1 } from "./../meta/v1"; import { IntOrString as _IntOrString_4 } from "./../apimachinery/intstr"; import { LabelSelector as _LabelSelector_5 } from "./../meta/v1"; import { ListMeta as _ListMeta_3 } from "./../meta/v1"; import { ObjectMeta as _ObjectMeta_2 } from "./../meta/v1"; import { Time as _Time_6 } from "./../meta/v1"; import { WatchEvent as _WatchEvent_7 } from "./../meta/v1"; /** * Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods//evictions. */ export declare interface Eviction { /** * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources */ apiVersion: "policy/v1beta1"; /** * DeleteOptions may be provided */ deleteOptions?: _DeleteOptions_1; /** * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds */ kind: "Eviction"; /** * ObjectMeta describes the pod that is being evicted. */ metadata?: _ObjectMeta_2; } /** * PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods */ export declare interface PodDisruptionBudget { /** * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources */ apiVersion: "policy/v1beta1"; /** * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds */ kind: "PodDisruptionBudget"; metadata?: _ObjectMeta_2; /** * Specification of the desired behavior of the PodDisruptionBudget. */ spec?: PodDisruptionBudgetSpec; /** * Most recently observed status of the PodDisruptionBudget. */ status?: PodDisruptionBudgetStatus; } /** * PodDisruptionBudgetList is a collection of PodDisruptionBudgets. */ export declare interface PodDisruptionBudgetList { /** * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources */ apiVersion: "policy/v1beta1"; items: Iterable; /** * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds */ kind: "PodDisruptionBudgetList"; metadata?: _ListMeta_3; } /** * PodDisruptionBudgetSpec is a description of a PodDisruptionBudget. */ export declare interface PodDisruptionBudgetSpec { /** * 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?: _IntOrString_4; /** * 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?: _IntOrString_4; /** * Label query over pods whose evictions are managed by the disruption budget. */ selector?: _LabelSelector_5; } /** * PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system. */ export declare interface PodDisruptionBudgetStatus { /** * current number of healthy pods */ currentHealthy: number; /** * minimum desired number of healthy pods */ desiredHealthy: number; /** * DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions. */ disruptedPods: { [key: string]: _Time_6; }; /** * Number of pod disruptions that are currently allowed. */ disruptionsAllowed: number; /** * total number of pods counted by this disruption budget */ expectedPods: number; /** * Most recent generation observed when updating this PDB status. PodDisruptionsAllowed and other status informatio is valid only if observedGeneration equals to PDB's object generation. */ observedGeneration?: number; } export declare type DeleteOptions = _DeleteOptions_1; export declare type WatchEvent = _WatchEvent_7;