...
Amazon Account
HiveMQ License (optional)
Install Amazon CLI
The AWS Command Line Interface is an open-source tool that enables you to interact with AWS services using commands in your command-line shell.
To install the AWS CLI on macOS with Homebrew, open a terminal and enter the following. For other operating systems, see AWS CLI installation.Code Block brew install awscli
Verify AWS CLI Installation: Open a new terminal or command prompt and run :the following command. This should display the installed AWS CLI version.(For us , its aws-cli/2.15.17 Python/3.11.7 Darwin/23.3.0 source/arm64 prompt/off)
Code Block aws --version
Configure AWS CLI: After installing the AWS CLI, do the following steps to configure it. (For more information, see Configure the AWS CLI in the AWS Command Line Interface User Guide.)
If you do not have existing access keys, please use the steps here to create new access key and note it or download the csv file.
Run the following command
Code Block aws configure
Optionally, you can configure a named profile, such as
--profile cluster-admin
. If you configure a named profile in the AWS CLI, you must always pass this flag in subsequent commands. E.g.aws configure --profile cluster-admin
This command will prompt you to enter the following information:
AWS Access Key ID: Enter your AWS access key.
AWS Secret Access Key: Enter your AWS secret key.
Default region name: Enter the AWS region you want to use (e.g.,
us-east-1
).Default output format: You can leave this as
json
.
For example:Code Block AWS Access Key ID [None]: AKIAI#####LE AWS Secret Access Key [None]: wJal####KEY Default region name [None]: us-east-1 Default output format [None]: json
Optionally, you can configure a named profile, such as
--profile cluster-admin
. If you configure a named profile in the AWS CLI, you must always pass this flag in subsequent commands.
EKS CLI (
eksctl
)eksctl
is a command line tool for working with EKS clusters that automates many individual tasks. To install the AWS CLI on macOS with Homebrew, open a terminal and enter the following. For other operating systems, see the installation ineksctl
documentation.Code Block brew tap weaveworks/tap && brew install weaveworks/tap/eksctl
IAM permissions – The IAM security principal that you're using must have permissions to work with Amazon EKS IAM roles, service linked roles, AWS CloudFormation, a VPC, and related resources. For more information, see Actions, resources, and condition keys for Amazon Elastic Container Service for Kubernetes and Using service-linked roles in the IAM User Guide.
Kubectl, Helm and MQTT CLI https://hivemq.atlassian.net/wiki/spaces/HMS/pages/2700902571
...
To create an EKS cluster with all the necessary resources for your cluster, enter the following command with the desired location (in this procedure, we use
eu-westeast-1
) and instance typec5.2xlarge (8 CPUs, 16 GiB RAM)
, enter the following command and wait until the process completes. Processing time can vary:
Code Block |
---|
eksctl create cluster \ --name HiveMQCluster \ --region eu-westeast-1 \ --node-type c5.2xlarge \ --version 1.27 \ --nodes 4 |
Info |
---|
Above command will also create IAM role and required permissions for eksctl. |
Your AWS account bills you for all resources you create. |
...