PodDisruptionBudget

    apiVersion: policy/v1

    import "k8s.io/api/policy/v1"

    PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods


    PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.


    • maxUnavailable (IntOrString)

      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”.

      IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.

    • minAvailable (IntOrString)

      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%”.

      IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.

    • selector ()

      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.

    • unhealthyPodEvictionPolicy (string)

      UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction. Current implementation considers healthy pods, as pods that have status.conditions item with type=”Ready”,status=”True”.

      Valid policies are IfHealthyBudget and AlwaysAllow. If no policy is specified, the default behavior will be used, which corresponds to the IfHealthyBudget policy.

      IfHealthyBudget policy means that running pods (status.phase=”Running”), but not yet healthy can be evicted only if the guarded application is not disrupted (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.

      AlwaysAllow policy means that all running pods (status.phase=”Running”), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction.

      Additional policies may be added in the future. Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this field.

      This field is alpha-level. The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (disabled by default).

    PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.


    • currentHealthy (int32), required

      current number of healthy pods

    • desiredHealthy (int32), required

      minimum desired number of healthy pods

    • disruptionsAllowed (int32), required

      Number of pod disruptions that are currently allowed.

    • expectedPods (int32), required

      total number of pods counted by this disruption budget

    • conditions ([]Condition)

      Patch strategy: merge on key type

      Map: unique values on key type will be kept during a merge

      Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn’t able to compute the number of allowed disruptions. Therefore no disruptions are allowed and the status of the condition will be False.

      • InsufficientPods: The number of pods are either at or below the number required by the PodDisruptionBudget. No disruptions are allowed and the status of the condition will be False.
      • SufficientPods: There are more pods than required by the PodDisruptionBudget. The condition will be True, and the number of allowed disruptions are provided by the disruptionsAllowed property.

      Condition contains details for one aspect of the current state of this API Resource.

      • conditions.lastTransitionTime (Time), required

        lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.

        Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.

      • conditions.message (string), required

        message is a human readable message indicating details about the transition. This may be an empty string.

      • conditions.reason (string), required

        reason contains a programmatic identifier indicating the reason for the condition’s last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.

      • conditions.status (string), required

        status of the condition, one of True, False, Unknown.

      • conditions.type (string), required

        type of condition in CamelCase or in foo.example.com/CamelCase.

      • conditions.observedGeneration (int64)

        observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.

    • disruptedPods (map[string]Time)

      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.

      Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.

    • observedGeneration (int64)

      Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB’s object generation.

    PodDisruptionBudgetList is a collection of PodDisruptionBudgets.


    • apiVersion: policy/v1

    • kind: PodDisruptionBudgetList

    • metadata (ListMeta)

      Standard object’s metadata. More info:

    • items ([]PodDisruptionBudget), required

      Items is a list of PodDisruptionBudgets


    HTTP Request

    GET /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}

    Parameters

    • name (in path): string, required

      name of the PodDisruptionBudget

    • namespace (in path): string, required

    • pretty (in query): string

      pretty

    Response

    200 (PodDisruptionBudget): OK

    401: Unauthorized

    get read status of the specified PodDisruptionBudget

    HTTP Request

    GET /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}/status

    Parameters

    • name (in path): string, required

      name of the PodDisruptionBudget

    • namespace (in path): string, required

      namespace

    • pretty (in query): string

    Response

    200 (): OK

    401: Unauthorized

    list or watch objects of kind PodDisruptionBudget

    HTTP Request

    GET /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets

    Parameters

    • namespace (in path): string, required

    • allowWatchBookmarks

    • continue (in query): string

    • fieldSelector (in query): string

      fieldSelector

    • labelSelector (in query): string

    • limit (in query): integer

      limit

    • pretty (in query): string

    • resourceVersion (in query): string

      resourceVersion

    • resourceVersionMatch (in query): string

    • timeoutSeconds (in query): integer

      timeoutSeconds

    • watch (in query): boolean

    Response

    200 (): OK

    401: Unauthorized

    HTTP Request

    GET /apis/policy/v1/poddisruptionbudgets

    Parameters

    • allowWatchBookmarks (in query): boolean

    • continue (in query): string

      continue

    • fieldSelector (in query): string

    • labelSelector (in query): string

      labelSelector

    • limit (in query): integer

    • pretty (in query): string

      pretty

    • resourceVersion (in query): string

    • resourceVersionMatch (in query): string

      resourceVersionMatch

    • timeoutSeconds (in query): integer

    • watch (in query): boolean

      watch

    Response

    200 (PodDisruptionBudgetList): OK

    401: Unauthorized

    create create a PodDisruptionBudget

    HTTP Request

    POST /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets

    Parameters

    • namespace (in path): string, required

      namespace

    • dryRun (in query): string

    • fieldManager (in query): string

      fieldManager

    • fieldValidation (in query): string

    • pretty (in query): string

      pretty

    Response

    200 (PodDisruptionBudget): OK

    201 (): Created

    202 (PodDisruptionBudget): Accepted

    401: Unauthorized

    update replace the specified PodDisruptionBudget

    HTTP Request

    PUT /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}

    Parameters

    • name (in path): string, required

      name of the PodDisruptionBudget

    • namespace (in path): string, required

      namespace

    • body: , required

    • dryRun (in query): string

      dryRun

    • fieldManager (in query): string

    • fieldValidation (in query): string

      fieldValidation

    • pretty (in query): string

    Response

    200 (): OK

    201 (PodDisruptionBudget): Created

    401: Unauthorized

    HTTP Request

    PUT /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}/status

    Parameters

    • name (in path): string, required

      name of the PodDisruptionBudget

    • namespace (in path): string, required

      namespace

    • body: , required

    • dryRun (in query): string

      dryRun

    • fieldManager (in query): string

    • fieldValidation

    • pretty (in query): string

    Response

    200 (): OK

    201 (PodDisruptionBudget): Created

    401: Unauthorized

    patch partially update the specified PodDisruptionBudget

    HTTP Request

    PATCH /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}

    Parameters

    • name (in path): string, required

      name of the PodDisruptionBudget

    • namespace (in path): string, required

      namespace

    • body: , required

    • dryRun (in query): string

      dryRun

    • fieldManager (in query): string

    • fieldValidation (in query): string

      fieldValidation

    • force (in query): boolean

    • pretty (in query): string

      pretty

    Response

    200 (PodDisruptionBudget): OK

    201 (): Created

    401: Unauthorized

    patch partially update status of the specified PodDisruptionBudget

    HTTP Request

    PATCH /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}/status

    Parameters

    • name (in path): string, required

      name of the PodDisruptionBudget

    • namespace (in path): string, required

    • body: Patch, required

    • dryRun (in query): string

    • fieldManager (in query): string

      fieldManager

    • fieldValidation (in query): string

    • force (in query): boolean

      force

    • pretty (in query): string

    Response

    200 (): OK

    201 (PodDisruptionBudget): Created

    401: Unauthorized

    HTTP Request

    DELETE /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets/{name}

    Parameters

    • name (in path): string, required

      name of the PodDisruptionBudget

    • namespace (in path): string, required

      namespace

    • body:

    • dryRun (in query): string

      dryRun

    • gracePeriodSeconds (in query): integer

    • pretty (in query): string

      pretty

    • propagationPolicy (in query): string

    Response

    200 (): OK

    202 (Status): Accepted

    401: Unauthorized

    delete collection of PodDisruptionBudget

    HTTP Request

    DELETE /apis/policy/v1/namespaces/{namespace}/poddisruptionbudgets

    Parameters

    • namespace (in path): string, required

      namespace

    • body:

    • continue (in query): string

      continue

    • dryRun (in query): string

    • fieldSelector (in query): string

      fieldSelector

    • gracePeriodSeconds (in query): integer

    • labelSelector (in query): string

      labelSelector

    • limit (in query): integer

    • pretty (in query): string

      pretty

    • propagationPolicy (in query): string

    • resourceVersion (in query): string

      resourceVersion

    • timeoutSeconds (in query): integer

    Response

    401: Unauthorized