Skip to content

Commit 60d5aaf

Browse files
committed
Update uninstall.md
(cherry picked from commit 2d61351)
1 parent e8b52b7 commit 60d5aaf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

docs/cluster-management/uninstall.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ If you modified your bash profile, you may wish to remove `source <(cortex compl
2727
export AWS_ACCESS_KEY_ID=***
2828
export AWS_SECRET_ACCESS_KEY=***
2929

30-
# delete the S3 bucket
30+
# identify the name of your cortex s3 bucket
3131
aws s3 ls
32-
aws s3 rb --force s3://<bucket-name>
3332

34-
# delete the log group
35-
aws logs describe-log-groups --log-group-name-prefix=<log_group_name> --query logGroups[*].[logGroupName] --output text | xargs -I {} aws logs delete-log-group --log-group-name {}
33+
# delete the s3 bucket
34+
aws s3 rb --force s3://<bucket>
35+
36+
# delete the log group (replace <log_group> with what was configured during installation, default: cortex)
37+
aws logs describe-log-groups --log-group-name-prefix=<log_group> --query logGroups[*].[logGroupName] --output text | xargs -I {} aws logs delete-log-group --log-group-name {}
3638
```

0 commit comments

Comments
 (0)