Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Add a note about setting the region via 'aws configure' if necessary. #563

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions 01-path-basics/102-your-first-cluster/readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ Create a Kubernetes cluster using the following command. Run it in the "bash" te
--resources-vpc-config subnetIds=${EKS_SUBNET_IDS},securityGroupIds=${EKS_SECURITY_GROUPS} \
--kubernetes-version 1.10

Note: If you receive the error message:
```
You must specify a region. You can also configure your region by running "aws configure".
```
Run `aws configure` and specify the region you are working in. You do not have to enter a value for the other prompts.

The `EKS_SERVICE_ROLE`, `EKS_SUBNET_IDS`, and `EKS_SECURITY_GROUPS` environment variables should have been set during the link:../101-start-here[Cloud9 Environment Setup].

Cluster provisioning usually takes less than 10 minutes. You can query the status of your cluster with the following command. When your cluster status is `ACTIVE`, you can proceed.
Expand Down