kubernetes-the-hard-way/docs/14-cleanup.md

16 lines
467 B
Markdown
Raw Normal View History

2017-08-29 00:19:25 +03:00
# Cleaning Up
2019-05-28 20:47:16 +03:00
In this lab you will delete the compute resources created during this tutorial. Everything you created belongs to the `kubernetes-the-hard-way` resource group, so cleaning everything up is as simple as deleteing the resource group:
2017-08-29 00:19:25 +03:00
```
2019-05-28 20:47:16 +03:00
az group delete --name kubernetes-the-hard-way --no-wait --yes
2017-08-29 00:19:25 +03:00
```
2019-05-28 20:47:16 +03:00
This operation may take a while, periodically check to make sure everything was deleted:
2017-08-29 00:19:25 +03:00
```
2019-05-28 20:47:16 +03:00
az group exists --name kubernetes-the-hard-way
2017-08-29 00:19:25 +03:00
```