Skip to content

Commit 41e32fc

Browse files
committed
minor fixes in 101 and 102
1 parent 7932aa8 commit 41e32fc

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

01-path-basics/101-start-here/readme.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Click on the "Deploy to AWS" button and follow the CloudFormation prompts to beg
2020

2121
[NOTE]
2222
AWS Cloud9 is currently available in 5 regions, and EKS is currently available in 2 regions (us-east-1 and us-west-2).
23-
Please choose the region closest to you. If you choose a region for Cloud9 that does not support EKS, you will need to change the `AWS_DEFAULT_REGION` environment variable later.
23+
Please choose the region closest to you. If you choose a region for Cloud9 that does not support EKS, you need to create VPC resources and change environment variables. We have not tested this configuration yet
2424

2525
|===
2626

@@ -69,6 +69,7 @@ To install the script, run this command in the "bash" terminal tab of the Cloud9
6969

7070
image:cloud9-run-script.png[Running the script in Cloud9 Terminal]
7171

72+
7273
At this point you can restart the Cloud9 IDE terminal session to ensure that the kubectl completion is enabled. Once a new terminal window is opened, type `kubectl ver` and press `Tab` to autocomplete and press `Enter`. This will ensure that the `kubectl` tool is installed on the command line correctly and can autocomplete.
7374

7475
[NOTE]

01-path-basics/102-your-first-cluster/readme.adoc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ Once the cluster has moved to the `ACTIVE` state, download and run the `create-k
8080

8181
This will create a configuration file at `$HOME/.kube/config` and update the necessary environment variable for default access.
8282

83+
You can test your kubectl configuration using 'kubectl get service'
84+
85+
$ kubectl get service
86+
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
87+
kubernetes ClusterIP 10.100.0.1 <none> 443/TCP 8m
88+
8389
=== Create the worker nodes
8490

8591
Now that your EKS master nodes are created, you can launch and configure your worker nodes.
@@ -115,6 +121,20 @@ To enable worker nodes to join your cluster, download and run the `aws-auth-cm.s
115121
Watch the status of your nodes and wait for them to reach the `Ready` status.
116122

117123
$ kubectl get nodes --watch
124+
NAME STATUS ROLES AGE VERSION
125+
ip-192-168-223-116.us-west-2.compute.internal NotReady <none> 0s v1.10.3
126+
ip-192-168-223-116.us-west-2.compute.internal NotReady <none> 0s v1.10.3
127+
ip-192-168-223-116.us-west-2.compute.internal NotReady <none> 0s v1.10.3
128+
ip-192-168-147-168.us-west-2.compute.internal NotReady <none> 0s v1.10.3
129+
ip-192-168-147-168.us-west-2.compute.internal NotReady <none> 0s v1.10.3
130+
ip-192-168-102-172.us-west-2.compute.internal NotReady <none> 0s v1.10.3
131+
ip-192-168-102-172.us-west-2.compute.internal NotReady <none> 0s v1.10.3
132+
ip-192-168-223-116.us-west-2.compute.internal NotReady <none> 10s v1.10.3
133+
ip-192-168-147-168.us-west-2.compute.internal NotReady <none> 10s v1.10.3
134+
ip-192-168-102-172.us-west-2.compute.internal NotReady <none> 10s v1.10.3
135+
ip-192-168-223-116.us-west-2.compute.internal Ready <none> 20s v1.10.3
136+
ip-192-168-147-168.us-west-2.compute.internal Ready <none> 20s v1.10.3
137+
ip-192-168-102-172.us-west-2.compute.internal Ready <none> 20s v1.10.3
118138

119139
== Kubernetes Cluster Context
120140

0 commit comments

Comments
 (0)