# Upgrades

We can upgrade by using `kubectl set image deployment/deployment_name helloworld=obahareth/new_hello_world`.

When we redeploy with a new image we get a new replicaset that matches the new set of images.

## Rollouts

We can view the rollout history by running `kubectl rollout history deployment/deployment_name`, we can use the revision numbers here to roll back to a specific version as well.

### Undoing

`kubectl rollout undo deployment/deployment_name`

This will roll back to the previous version

### Rolling Back to a Specific Version

`kubectl rollout undo deployment/deployment_name --to-revision=3`

This will roll back to revision 3.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.omar.engineer/devops/kubernetes/upgrades.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
