Skip to content

Latest commit

 

History

History
56 lines (45 loc) · 3.02 KB

Helpful_Links_Blogs_Articles.md

File metadata and controls

56 lines (45 loc) · 3.02 KB

Links, Articles, and helpful commands and tips

Helpful Links and Articles

Here are some useful links and articles related to the project:

EKS Workshop Scaling

JupyterHub Deployment

Amazon EKS with Terraform

Feel free to explore these resources to gain insights and assistance with your project. Good luck!

Tips and Useful Commands for the Project

In regards to deletion:

  1. Check EFS Storage Classes: Before deleting, verify that all EFS (Elastic File System) storage classes are deleted. This ensures there are no lingering resources that might cause issues during deletion.
  2. Check Load Balancers (LBs): Ensure all Load Balancers (LBs) associated with the project are deleted. Failure to do so may prevent the deletion of the Virtual Private Cloud (VPC) due to lingering dependencies.
  3. Delete EC2 Route Table: To delete a specific EC2 Route Table, use the following command:
    aws ec2 delete-route-table --route-table-id <route-table-id>
  4. Delete EC2 Network ACL: To delete an EC2 Network ACL, use the following command:
    aws ec2 delete-network-acl --network-acl-id <network-acl-id>

To delete a load balancer and a NAT gateway, you can use the following AWS CLI commands: 5. Delete Load Balancer: To delete a load balancer, use the following command: bash aws elbv2 delete-load-balancer --load-balancer-arn <load-balancer-arn> 6. ## Delete NAT Gateway: Before deleting a NAT gateway, ensure that it is not being used by any resources. Delete it by using the following command: bash aws ec2 delete-nat-gateway --nat-gateway-id <nat-gateway-id>

Please be cautious while using these commands, as they will permanently delete the specified resources. Make sure you are confident about the resources you are deleting and their impact on your environment.