-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "deprecate old versions, improve install & upgrade docs"
- Loading branch information
1 parent
1a345e6
commit a2af017
Showing
6 changed files
with
138 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,23 @@ | ||
# Deleting a Cluster Installation | ||
|
||
To delete a Run:ai Cluster installation run the following commands: | ||
To delete a Run:ai Cluster installation while retaining existing running jobs, run the following commands: | ||
|
||
=== "Version 2.9 or later" | ||
``` | ||
helm uninstall runai-cluster -n runai | ||
``` | ||
|
||
The command will **not** delete existing Projects, Departments, or Workloads submitted by users. | ||
=== "Version 2.8" | ||
``` | ||
kubectl delete RunaiConfig runai -n runai | ||
helm uninstall runai-cluster -n runai | ||
``` | ||
|
||
=== "Version 2.7 or earlier" | ||
``` | ||
kubectl patch RunaiConfig runai -n runai -p '{"metadata":{"finalizers":[]}}' --type="merge" | ||
kubectl delete RunaiConfig runai -n runai | ||
helm uninstall runai-cluster runai -n runai | ||
``` | ||
|
||
The commands will **not** delete existing Jobs submitted by users. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters