​AWS credentials​
​Docker​
​Cortex CLI​
​AWS CLI​
# spin down the clustercortex cluster down​# uninstall the CLIsudo rm /usr/local/bin/cortexrm -rf ~/.cortex
If you modified your bash profile, you may wish to remove source <(cortex completion bash) from it (or remove source <(cortex completion zsh) for zsh).
Since you may wish to have access to your data after spinning down your cluster, Cortex's bucket and log groups are not automatically deleted when running cortex cluster down.
To delete them:
# set AWS credentialsexport AWS_ACCESS_KEY_ID=***export AWS_SECRET_ACCESS_KEY=***​# identify the name of your cortex S3 bucketaws s3 ls​# delete the S3 bucketaws s3 rb --force s3://<bucket>​# delete the log group (replace <log_group> with what was configured during installation, default: cortex)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 {}
If you've configured a custom domain for your APIs, you may wish to remove the SSL Certificate and Hosted Zone for the domain by following these instructions.