Skip to content

Commit

Permalink
Update eviction example to use policy/v1
Browse files Browse the repository at this point in the history
  • Loading branch information
liggitt committed Apr 29, 2021
1 parent ba7fae9 commit f081886
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions content/en/docs/tasks/administer-cluster/safely-drain-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,28 @@ Pod can be thought of as a kind of policy-controlled DELETE operation on the Pod
itself. To attempt an eviction (more precisely: to attempt to
*create* an Eviction), you POST an attempted operation. Here's an example:

{{< tabs name="Eviction_example" >}}
{{% tab name="policy/v1" %}}
{{< note >}}
`policy/v1` Eviction is available in v1.22+. Use `policy/v1beta1` with prior releases.
{{< /note >}}

```json
{
"apiVersion": "policy/v1",
"kind": "Eviction",
"metadata": {
"name": "quux",
"namespace": "default"
}
}
```
{{% /tab %}}
{{% tab name="policy/v1beta1" %}}
{{< note >}}
Deprecated in v1.22 in favor of `policy/v1`
{{< /note >}}

```json
{
"apiVersion": "policy/v1beta1",
Expand All @@ -119,6 +141,8 @@ itself. To attempt an eviction (more precisely: to attempt to
}
}
```
{{% /tab %}}
{{< /tabs >}}

You can attempt an eviction using `curl`:

Expand Down

0 comments on commit f081886

Please sign in to comment.