Skip to content

Commit 9b53d21

Browse files
authored
Merge pull request aws-samples#331 from aws-samples/cloud9-development
fixed grammar issue and added kops installation instructions to the m…
2 parents 63e77e9 + 458de52 commit 9b53d21

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

cloud9-development/readme.adoc

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Your AWS Cloud9 environment comes with the AWS CLI preinstalled and configured t
3737

3838
.Please Note
3939
*********************
40-
It is not recommended that you change the default AWS CLI config in your AWS Cloud9 environment. Instead, it is recommended that you provide the logged in user's account the permissions needed to make the required for your project. More information on this can be found by visiting: https://docs.aws.amazon.com/cloud9/latest/user-guide/credentials.html[Calling AWS Services from an Environment in AWS Cloud9]
40+
It is not recommended that you change the default AWS CLI config in your AWS Cloud9 environment. Instead, it is recommended that you provide the logged in user's account the permissions needed to make any requests needed by your project. More information on this can be found by visiting: https://docs.aws.amazon.com/cloud9/latest/user-guide/credentials.html[Calling AWS Services from an Environment in AWS Cloud9]
4141
*********************
4242

4343
For the sake of this workshop, we are going to configure the AWS CLI on your AWS Cloud9 environment using the AWS Configure command. For this, use the same credentials you created in the "Create admin user and group" section of the https://github.com/aws-samples/aws-workshop-for-kubernetes/blob/master/prereqs.adoc[Prerequesites] page.
@@ -77,6 +77,18 @@ This should output something similar to the follow:
7777

7878
Client Version: version.Info{Major:"1", Minor:"8", GitVersion:"v1.8.0", GitCommit:"6e937839ac04a38cac63e6a7a306c5d035fe7b0a", GitTreeState:"clean", BuildDate:"2017-09-28T22:57:57Z", GoVersion:"go1.8.3", Compiler:"gc", Platform:"linux/amd64"}
7979

80+
==== Install kops
81+
82+
Install kops using the following:
83+
84+
curl -LO https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-linux-amd64
85+
chmod +x kops-linux-amd64
86+
sudo mv kops-linux-amd64 /usr/local/bin/kops
87+
88+
Complete installation instructions are available at https://github.com/kubernetes/kops#installing.
89+
90+
The latest and prior versions of kops can be downloaded from https://github.com/kubernetes/kops/releases.
91+
8092
==== Clone the repo
8193

8294
The workshop repo has configuration files that are used to create Kubernetes resources. You need to clone the repo to have access to those files:

0 commit comments

Comments
 (0)