Preparing for the Cluster Setup: Availability Zones and SSH Keys
Explore how to select availability zones in AWS and generate SSH keys essential for secure access while preparing to build a production-ready Kubernetes cluster. Understand best practices for environment setup that ensures cluster availability and security.
We'll cover the following...
We'll cover the following...
Setting up the availability zones
In this lesson, we will decide which availability zones we should use. So, let’s look at what’s available in the us-east-2 region:
The output is as follows:
As we can see, the region has three availability zones. We’ll store them in an environment variable.
Note: Windows users should use
tr '\r\n' ', 'instead oftr '\n' ','in the following command: ...