How to install python3.8 and pip? January 10, 2022 Run the following commands:sudo apt install python3.8sudo apt install python3.8-distutilswget https://bootstrap.pypa.io/get-pip.pysudo python3.8 get-pip.py Share Get link Facebook X Pinterest Email Other Apps 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
CloudFront January 07, 2023 The user requests to get static contents served from CloudFront are directed to the nearby Edge locations . Read more
AWS Services January 07, 2023 Application Load Balancer (ALB) Auto Scaling Group (ASG) CloudFront Relational Database Service (RDS) Simple Storage Service (S3) NAT Gateway & NAT Instance Read more
Comments
Post a Comment