---
title: "Resetting an OVHcloud Managed Kubernetes cluster"
description: "Find out how to reset an OVHcloud Managed Kubernetes cluster"
url: https://docs.ovhcloud.com/it/guides/public-cloud/containers-orchestration/managed-kubernetes/reset-cluster
lang: it
lastUpdated: 2026-02-25
---
# Resetting an OVHcloud Managed Kubernetes cluster

## Objective

OVHcloud Managed Kubernetes service provides you Kubernetes clusters without the hassle of installing or operating them.

Through the OVHcloud Control Panel and the API, you can reset your OVHcloud Managed Kubernetes cluster.

:::info
During a reset, all data in the ETCD will be deleted (pods, deployments, services, secrets, CRDs, etc.). Similarly, load balancers and also all PVC (Persistent Volume Claim) with their PCI cinder volumes will be deleted.
Nodes will be either deleted or reinstalled (depending on the option you set during the reset).

:::

The whole cluster configuration is reset but some values can be defined (optional):

- workerNodesPolicy: reinstall|delete
- minor\_version: for ex. 1.25
- updatePolicy: "ALWAYS\_UPDATE" by default
- customization: API Server & kube proxy configuration
- privateNetworkId: private network openstack UUID
- privateNetworkConfiguration: true|false
- defaultVrackGateway: gateway IP
- kubeProxyMode: ipvs|iptables

## Requirements

- an OVHcloud Managed Kubernetes cluster


***

### OVHcloud Control Panel Access

- **Direct link:** <ManagerLink to="/#/pci/projects">Public Cloud Projects</ManagerLink>
- **Navigation path:** <code className="action">Public Cloud</code> > Select your project

***


## Instructions

### Reset a Kubernetes cluster on the OVHcloud Control Panel

#### Step 1 - Ask for cluster reset on the OVHcloud Control Panel

Access the administration UI for your OVHcloud Managed Kubernetes clusters by clicking on `Managed Kubernetes Service
` in the left-hand menu.
![List your Kubernetes clusters](/images/public-cloud/containers-orchestration/managed-kubernetes/resetting-a-cluster/clusters.png)
Click on your Kubernetes cluster.

![Access to the administration UI](/images/public-cloud/containers-orchestration/managed-kubernetes/resetting-a-cluster/resetting_a_cluster-01.png)
In the _Service_ tab of the administration UI, click on _Reset your cluster_.

#### Step 2 - Choose the type of reset you want

You have two options on the reset menu, _Delete_ and _Reinstall_.

- Choosing _Delete nodes_ means that the current cluster nodes are deleted, and the cluster is reinitialized to an empty state.

- Choosing _Keep and reinstall nodes_ means that the cluster is reinitialized without destroying the nodes.

![Choose the type of reset you want](/images/public-cloud/containers-orchestration/managed-kubernetes/resetting-a-cluster/resetting_a_cluster-03.png)
You can also choose the minor version of the cluster and the private network attached.

Click on the `Confirm
` button to continue.
#### Step 3 - Wait for the resetting to end

Depending on the chosen kind of reset, the process can take several minutes. During that time, a message on the manager warns you that the cluster is under resetting:

![resetting](/images/public-cloud/containers-orchestration/managed-kubernetes/resetting-a-cluster/resetting_a_cluster-04.png)
### Reset a Kubernetes cluster through the API

#### The API Explorer

To simplify things, we are using the [API Explorer](https://eu.api.ovh.com/) which allows to explore, learn and interact with the API in an interactive way.

Log in to the API Explorer using your OVHcloud NIC handle.

![Log in to the API Explorer](/images/public-cloud/containers-orchestration/managed-kubernetes/resetting-a-cluster/kubernetes-quickstart-api-ovh-com-001.png)
If you go to the [Kubernetes section](https://api.ovh.com/console/#/cloud/project/%7BserviceName%7D/kube~GET) of the API Explorer, you will see the available endpoints:

![Kubernetes section of the API Explorer](/images/public-cloud/containers-orchestration/managed-kubernetes/resetting-a-cluster/kubernetes-quickstart-api-ovh-com-002.png)
#### API endpoints

- Reset a Kubernetes cluster:


🇪🇺EU▾

[POST/cloud/project/{serviceName}/kube/{kubeId}/reset](https://eu.api.ovh.com/console/?section=/cloud&branch=v1#post-/cloud/project/-serviceName-/kube/-kubeId-/reset)

**Input:**

```json
{
  "name": "my-test-cluster",
  "updatePolicy": "ALWAYS_UPDATE",
  "version": "1.34"
}
```

**Result:**

```json
null
```

By default, if you don't specify it, the `workerNodesPolicy` option will be equivalent to `delete`. If you don't want your Nodes deleted but reinstalled instead, you have to specify `"workerNodesPolicy": "reinstall"`.

:::info
You should receive a response with `null` content. This message will be improved in the future with the same information you have after a Kubernetes cluster creation.

:::

- Check the Kubernetes cluster is resetting:


🇪🇺EU▾

[GET/cloud/project/{serviceName}/kube/{kubeId}](https://eu.api.ovh.com/console/?section=/cloud&branch=v1#get-/cloud/project/-serviceName-/kube/-kubeId-)

**Result:**

```json
{
  "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx",
  "region": "GRA5",
  "name": "my-test-cluster",
  "url": "xxxxxx.xx.gra.k8s.ovh.net",
  "nodesUrl": "xxxxxx.nodes.c1.gra.k8s.ovh.net",
  "version": "1.34.1",
  "nextUpgradeVersions": [],
  "kubeProxyMode": "iptables",
  "customization": {
    "apiServer": {
      "admissionPlugins": {
        "enabled": [
          "AlwaysPullImages",
          "NodeRestriction"
        ],
        "disabled": []
      }
    }
  },
  "status": "REDEPLOYING",
  "updatePolicy": "ALWAYS_UPDATE",
  "isUpToDate": true,
  "controlPlaneIsUpToDate": true,
  "privateNetworkId": null,
  "createdAt": "2023-03-21T10:53:35Z",
  "updatedAt": "2023-03-22T09:16:34Z"
}
```

## Go further

To have an overview of OVHcloud Managed Kubernetes service, you can go to the [OVHcloud Managed Kubernetes page](https://www.ovhcloud.com/it/public-cloud/kubernetes/).

Otherwise to skip it and learn more about using your Kubernetes cluster the practical way, we invite you to look at our [tutorials](/it/guides/public-cloud/containers-orchestration/managed-kubernetes/overview.md).

- If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](https://www.ovhcloud.com/it/professional-services/) to get a quote and ask our Professional Services experts for assisting you on your specific use case of your project.

- Join our [community of users](https://community.ovhcloud.com/).
