-
Notifications
You must be signed in to change notification settings - Fork 5.7k
clarify and fix problems in paddle on aws k8s (create cluster part) #1161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -2,18 +2,18 @@ | |||
|
|||
## Create AWS Account and IAM Account | |||
|
|||
AWS account allow us to manage AWS from Web Console. Amazon AMI enable us to manage AWS from command line interface. | |||
AWS account allow us to manage AWS from Web Console. Amazon IAM enable us to manage AWS from command line interface. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是不是这样能更清楚地表达AWS account和IAM users之间的关系?
Under each AWS account, we can create multiple IAM users. This allows us to grant some privileges to each IAM user and to create/operate AWS clusters as an IAM user.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, great! Done.
|
||
#### S3 bucket | ||
|
||
You need to create an S3 bucket before startup the Kubernetes cluster. | ||
|
||
command (need to have a global unique name): | ||
There are some bug in aws cli in creating S3 bucket, so let's use [web console](https://console.aws.amazon.com/s3/home?region=us-west-1). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bug ==> bugs
web ==> Web
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
|
||
#### S3 bucket | ||
|
||
You need to create an S3 bucket before startup the Kubernetes cluster. | ||
|
||
command (need to have a global unique name): | ||
There are some bug in aws cli in creating S3 bucket, so let's use [web console](https://console.aws.amazon.com/s3/home?region=us-west-1). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use web console ==> use the Web console
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
|
||
We need to create an AMI user with sufficient privilege to create kubernetes cluster on AWS. | ||
We need to create an IAM user with sufficient privilege to create kubernetes cluster on AWS. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
我感觉这句话可以删了,因为 L16 列出来了需要的privileges了。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
@@ -59,7 +51,7 @@ gpg2 --fingerprint FC8A365E | |||
``` | |||
The correct key fingerprint is `18AD 5014 C99E F7E3 BA5F 6CE9 50BD D3E0 FC8A 365E` | |||
|
|||
Go to the [releases](https://github.com/coreos/kube-aws/releases) and download the latest release tarball and detached signature (.sig) for your architecture. | |||
Go to the [releases](https://github.com/coreos/kube-aws/releases) and download release tarball (this tutorial is using v0.9.1) and detached signature (.sig) for your architecture. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can download kube-aws from its release page. In this tutorial, we use version 0.9.1.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
…r, test=develop, test=document_preview (PaddlePaddle#1161)
This is the second pass. @cxwangyi @tizhou86 @backyes