6.17. Uninstalling a cluster on AWS
You can remove a cluster that you deployed to Amazon Web Services (AWS).
6.17.1. Removing a cluster that uses installer-provisioned infrastructure Copier lienLien copié sur presse-papiers!
You can remove a cluster that uses installer-provisioned infrastructure from your cloud.
After uninstallation, check your cloud provider for any resources not removed properly, especially with User Provisioned Infrastructure (UPI) clusters. There might be resources that the installer did not create or that the installer is unable to access.
Conditions préalables
- You have a copy of the installation program that you used to deploy the cluster.
- You have the files that the installation program generated when you created your cluster.
Procédure
On the computer that you used to install the cluster, go to the directory that contains the installation program, and run the following command:
./openshift-install destroy cluster \ --dir <installation_directory> --log-level info
$ ./openshift-install destroy cluster \ --dir <installation_directory> --log-level info
1 2 Copy to Clipboard Copied! Toggle word wrap Toggle overflow NoteYou must specify the directory that contains the cluster definition files for your cluster. The installation program requires the
metadata.json
file in this directory to delete the cluster.-
Optional: Delete the
<installation_directory>
directory and the OpenShift Container Platform installation program.
6.17.2. Deleting AWS resources with the Cloud Credential Operator utility Copier lienLien copié sur presse-papiers!
To clean up resources after uninstalling an OpenShift Container Platform cluster with the Cloud Credential Operator (CCO) in manual mode with STS, you can use the CCO utility (ccoctl
) to remove the AWS resources that ccoctl
created during installation.
Conditions préalables
-
Extraire et préparer le binaire
ccoctl
. - Install an OpenShift Container Platform cluster with the CCO in manual mode with STS.
Procédure
Delete the AWS resources that
ccoctl
created:ccoctl aws delete \ --name=<name> \ --region=<aws_region>
$ ccoctl aws delete \ --name=<name> \
1 --region=<aws_region>
2 Copy to Clipboard Copied! Toggle word wrap Toggle overflow Exemple de sortie :
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Vérification
- To verify that the resources are deleted, query AWS. For more information, refer to AWS documentation.
6.17.3. Deleting a cluster with a configured AWS Local Zone infrastructure Copier lienLien copié sur presse-papiers!
After you install a cluster on Amazon Web Services (AWS) into an existing Virtual Private Cloud (VPC), and you set subnets for each Local Zone location, you can delete the cluster and any AWS resources associated with it.
The example in the procedure assumes that you created a VPC and its subnets by using a CloudFormation template.
Conditions préalables
-
You know the name of the CloudFormation stacks,
<local_zone_stack_name>
and<vpc_stack_name>
, that were used during the creation of the network. You need the name of the stack to delete the cluster. - You have access rights to the directory that contains the installation files that were created by the installation program.
- Your account includes a policy that provides you with permissions to delete the CloudFormation stack.
Procédure
Change to the directory that contains the stored installation program, and delete the cluster by using the
destroy cluster
command:./openshift-install destroy cluster --dir <installation_directory> \ --log-level=debug
$ ./openshift-install destroy cluster --dir <installation_directory> \
1 --log-level=debug
2 Copy to Clipboard Copied! Toggle word wrap Toggle overflow Delete the CloudFormation stack for the Local Zone subnet:
aws cloudformation delete-stack --stack-name <local_zone_stack_name>
$ aws cloudformation delete-stack --stack-name <local_zone_stack_name>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Delete the stack of resources that represent the VPC:
aws cloudformation delete-stack --stack-name <vpc_stack_name>
$ aws cloudformation delete-stack --stack-name <vpc_stack_name>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
Vérification
Check that you removed the stack resources by issuing the following commands in the AWS CLI. The AWS CLI outputs that no template component exists.
aws cloudformation describe-stacks --stack-name <local_zone_stack_name>
$ aws cloudformation describe-stacks --stack-name <local_zone_stack_name>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow aws cloudformation describe-stacks --stack-name <vpc_stack_name>
$ aws cloudformation describe-stacks --stack-name <vpc_stack_name>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow