Auto Scaling Group January 07, 2023 Use ASG if the EC2 is unable to handle surge of requests.ASG can be integrated with SQS. Based on the length of the queue, the group of EC2 instances can be increased or decreased. Share Get link Facebook X Pinterest Email Other Apps Labels ASG auto-scaling-group aws-services Share Get link Facebook X Pinterest Email Other Apps Comments
How to install/upgrade/downgrade kubectl in Linux (Ubuntu)? September 09, 2021 To install the latest version: curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" curl -LO "https://dl.k8s.io/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl.sha256" echo "$(<kubectl.sha256) kubectl" | sha256sum --check sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl kubectl version --client kubectl version To install a specific (v1.19.0) version: curl -LO "https://dl.k8s.io/release/v1.19.0/bin/linux/amd64/kubectl" curl -LO "https://dl.k8s.io/v1.19.0/bin/linux/amd64/kubectl.sha256" echo "$(<kubectl.sha256) kubectl" | sha256sum --check sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl kubectl version --client kubectl version This will install kubectl client. Run minikube start to install kubectl server. Read more
Application Load Balancer (ALB) January 07, 2023 The ALB spans all subnets in a VPC i.e., it is not inside a subnet but VPC. ALB is bound to Target Groups (TGs). TGs are bound to subnets. Read more
CloudFront January 07, 2023 The user requests to get static contents served from CloudFront are directed to the nearby Edge locations . Read more
Comments
Post a Comment