Creating AWS ELK Cluster
1. Installing eksctl commandline tool
elsctl
is a popular command-line tool to create and manage Elastic Kubernetes Service (EKS) on AWS. To install elsctl run following commands:
You can addeksctl
to the bash completion by running:
$ cat '. <(eksctl completion bash)' >> ~/.bashrc
2. Set AWS account credentials
Configure your aws credentials files ~/.aws/credentials
. It should define the aws_access_key_id
and aws_secret_access_key
:
You can also configure the default output and region in file ~/.aws/config
More details on aws command-line tool configuration can be found HERE.
3. Create a new EKS Cluster
Last updated