Below you will find pages that utilize the taxonomy term “Kubectl”
Kubernetesread more
I. Install AWS CLI, kubectl, and eksctl
Ubuntu 22.04.3 LTS - Windows Subsystem for Linux - AMD64
1. Install & Config AWS CLI
sudo snap install aws-cli --classic
aws --version
which aws
Configure AWS account
aws configure
AWS Access Key ID [None]: xxxxxxxxxxxx
AWS Secret Access Key [None]: xxxxxxxxxxxxxxxx+xxxxxx
Default region name [None]: ap-southeast-1
Default output format [None]: json
You can verify your aws account:
cat ~/.aws/credentials
cat ~/.aws/config
aws ec2 describe-vpcs
2. Install kubectl CLI
kubectl is the command-line interface (CLI) tool used to interact with Kubernetes clusters. It allows developers and operators to manage cluster resources, inspect states, deploy applications, and perform administrative tasks.