...
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-east-1
) and instance typec5.2xlarge (8 CPUs, 16 GiB RAM)
, enter the following command and wait until the process completes. Processing time take up to ~5 minutes and can vary:
Code Block |
---|
eksctl create cluster \ --name HiveMQCluster \ --region eu-east-1 \ --node-type c5.2xlarge \ --version 1.27 \ --nodes 4 |
...