# io.k8s.api.lifecycle.v1alpha1.EvictionRequestStatus

From **Kubernetes**.

EvictionRequestStatus represents the last observed status of the eviction request.

- Type: `object`

## Properties

### `conditions`

- Required: false
- Type: `array`

conditions contain information about the eviction request.

EvictionRequest specific conditions are: TargetEvicted or Failed (managed by evictionrequest-controller). - Failed means that the eviction request is no longer being processed
  by any eviction responder. This can happen if the request is canceled or if no responder
  managed to evict the target (e.g. terminate or delete a pod).
- TargetEvicted means that the target has been evicted (e.g. a pod has been terminated or deleted).

These conditions can be reset if the eviction was unsuccessful and a new Eviction intent has been submitted.

The maximum length of the conditions list is 100.

### `observedGeneration`

- Required: false
- Type: `integer`
- Format: `int64`

observedGeneration is EvictionRequest's .metadata.generation observed by the evictionrequest-controller. The observed generation value cannot be negative and can only be incremented. The minimum value is 1. This field is managed by evictionrequest-controller.

## JSON Schema

```json
{"description":"EvictionRequestStatus represents the last observed status of the eviction request.","properties":{"conditions":{"description":"conditions contain information about the eviction request.\n\nEvictionRequest specific conditions are: TargetEvicted or Failed (managed by evictionrequest-controller). - Failed means that the eviction request is no longer being processed\n  by any eviction responder. This can happen if the request is canceled or if no responder\n  managed to evict the target (e.g. terminate or delete a pod).\n- TargetEvicted means that the target has been evicted (e.g. a pod has been terminated or deleted).\n\nThese conditions can be reset if the eviction was unsuccessful and a new Eviction intent has been submitted.\n\nThe maximum length of the conditions list is 100.","items":{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Condition"},"type":"array","x-kubernetes-list-map-keys":["type"],"x-kubernetes-list-type":"map","x-kubernetes-patch-merge-key":"type","x-kubernetes-patch-strategy":"merge"},"observedGeneration":{"description":"observedGeneration is EvictionRequest's .metadata.generation observed by the evictionrequest-controller. The observed generation value cannot be negative and can only be incremented. The minimum value is 1. This field is managed by evictionrequest-controller.","format":"int64","type":"integer"}},"type":"object"}
```
