feat: add uninstall instructions for OneUptime in documentation

This commit is contained in:
Simon Larsen
2025-01-08 17:18:51 +00:00
parent 7b68c0b3c0
commit cf01fce011
2 changed files with 23 additions and 2 deletions

View File

@@ -97,4 +97,15 @@ npm run update
### Things to consider
- In our Docker setup, we employ a local logging driver. OneUptime, particularly within the probe and ingest containers, generates a substantial amount of logs. To prevent your storage from becoming full, it's crucial to limit the logging storage in Docker. For detailed instructions on how to do this, please refer to the official Docker documentation [here](https://docs.docker.com/config/containers/logging/local/).
- In our Docker setup, we employ a local logging driver. OneUptime, particularly within the probe and ingest containers, generates a substantial amount of logs. To prevent your storage from becoming full, it's crucial to limit the logging storage in Docker. For detailed instructions on how to do this, please refer to the official Docker documentation [here](https://docs.docker.com/config/containers/logging/local/).
### Uninstalling OneUptime
To uninstall OneUptime, run the following command:
```
npm run down
```
This will stop and remove all the containers, networks, and volumes created by OneUptime. It will not remove the `config.env` file or the cloned repository.

View File

@@ -62,7 +62,9 @@ helm repo update
helm upgrade my-oneuptime oneuptime/oneuptime -f values.yaml
```
## Uninstall Helm Chart
## Uninstall OneUptime
To uninstall/delete the `my-oneuptime` deployment:
```console
helm uninstall my-oneuptime
@@ -328,6 +330,14 @@ We use these charts as dependencies. You dont need to install them separately. P
| `redis` | Redis database | https://charts.bitnami.com/bitnami |
| `clickhouse` | Clickhouse database | https://charts.bitnami.com/bitnami |
## Uninstalling OneUptime
To uninstall/delete the `my-oneuptime` deployment:
```console
helm uninstall my-oneuptime
```
## Contributing
We <3 contributions big and small.