Skip to content

Commit f532458

Browse files
authored
Merge pull request aws-samples#335 from dalbhanj/master
fixing links for some cfn luanch templates in 101-start-here ReadMe
2 parents f750614 + 3033bcf commit f532458

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ This section walks you through the creating a Kubernetes development environment
1313
We can create the Cloud9 development environment via CloudFormation.
1414
This CloudFormation template will spin up the Cloud9 IDE, as well as configure the IDE environment for the rest of the workshop.
1515

16-
The CloudFormation template can create a new VPC, or be launched into an existing one.
16+
The CloudFormation template can create a new VPC, or you can choose an existing VPC if needed.
1717
If you are unsure, we recommend the "Launch template with an existing VPC" option.
1818

1919
Click on the "Deploy to AWS" button and follow the CloudFormation prompts to begin.
2020

2121
[NOTE]
22-
AWS Cloud9 is currently only available in 5 regions.
22+
AWS Cloud9 is currently available in 5 regions.
2323
Please choose the region closest to you.
2424

2525
|===
@@ -39,15 +39,15 @@ a| image::./deploy-to-aws.png[link=https://console.aws.amazon.com/cloudformation
3939

4040
| *Ireland* (eu-west-1)
4141
a| image::./deploy-to-aws.png[link=https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/new?stackName=k8s-workshop&templateURL=https://s3.amazonaws.com/aws-kubernetes-artifacts/lab-ide-vpc.template]
42-
a| image::./deploy-to-aws.png[link=https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/new?stackName=k8s-workshop&templateURL=https://s3.amazonaws.com/aws-kubernetes-artifacts/lab-ide-novpc.template]
42+
a| image::./deploy-to-aws.png[link=https://console.aws.amazon.com/cloudformation/home?region=eu-west-1#/stacks/new?stackName=k8s-workshop&templateURL=https://s3.amazonaws.com/aws-kubernetes-artifacts/lab-ide-novpc.template]
4343

4444
| *Singapore* (ap-southeast-1)
4545
a| image::./deploy-to-aws.png[link=https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/new?stackName=k8s-workshop&templateURL=https://s3.amazonaws.com/aws-kubernetes-artifacts/lab-ide-vpc.template]
46-
a| image::./deploy-to-aws.png[link=https://console.aws.amazon.com/cloudformation/home?region=us-west-2#/stacks/new?stackName=k8s-workshop&templateURL=https://s3.amazonaws.com/aws-kubernetes-artifacts/lab-ide-novpc.template]
46+
a| image::./deploy-to-aws.png[link=https://console.aws.amazon.com/cloudformation/home?region=ap-southeast-1#/stacks/new?stackName=k8s-workshop&templateURL=https://s3.amazonaws.com/aws-kubernetes-artifacts/lab-ide-novpc.template]
4747

4848
|===
4949

50-
To open the Cloud9 IDE environment, click on the "Output" tab in CloudFormation Console and click on the "Cloud9IDE" URL.
50+
To open the Cloud9 IDE environment, click on the "Outputs" tab in CloudFormation Console and click on the "Cloud9IDE" URL.
5151

5252
image:cloudformation-output-tab.png[CloudFormation Output Tab]
5353

@@ -61,7 +61,7 @@ Once your Cloud9 is ready, download the build script and install in your IDE. Th
6161

6262
- jq
6363
- kubectl _(the Kubernetes CLI, which we'll cover in great detail later in the workshop)_
64-
- kops _(Kubernetes Operations, which we'll also cover in detail later)_
64+
- kops _(Kubernetes Operations, which we'll also cover in detail later)_
6565
- configures the AWS CLI and stores necessary environment variables in bash_profile
6666
- creates an SSH key
6767
- clone the workshop repository into Cloud9
@@ -97,7 +97,7 @@ You are now ready to continue on with the workshop!
9797

9898
The next step is link:../102-your-first-cluster[to create a Kubernetes cluster using kops].
9999

100-
== Workshop Cleanup
100+
== Workshop Cleanup
101101

102102
Once you have finished with the workshop, please don't forget to spin down your cluster or you will incur additional charges.
103103
(We will also remind you at the end!)
@@ -177,7 +177,7 @@ Docker is preinstalled. You can verify the version by running the following:
177177
$ docker --version
178178
Docker version 17.06.2-ce, build 3dfb8343b139d6342acfd9975d7f1068b5b1c3d3
179179

180-
You should have a similar or newer version.
180+
You should have a similar or newer version.
181181

182182
=== Install Kubectl CLI
183183

@@ -206,7 +206,7 @@ Install kops using the following:
206206

207207
kops needs a "`state store`" to store configuration information of the cluster. We will use a s3 bucket with versioning enabled. A state store can work with multiple kops clusters.
208208

209-
[NOTE]
209+
[NOTE]
210210
The bucket name must be unique otherwise you will encounter an error on deployment. We will use an example bucket name of `kops-state-store-` and add a randomly generated string to the end.
211211

212212
$ export S3_BUCKET=kops-state-store-$(cat /dev/urandom | LC_ALL=C tr -dc "[:alpha:]" | tr '[:upper:]' '[:lower:]' | head -c 32)
1.78 KB
Loading

0 commit comments

Comments
 (0)