mirror of https://github.com/kubernetes/kops.git
Merge pull request #1256 from DualSpark/aws-readme-updates
Updating AWS to use pypi instead of brew
This commit is contained in:
commit
f3eb195da5
17
docs/aws.md
17
docs/aws.md
|
@ -53,12 +53,29 @@ Kubernetes kops uses the official AWS Go SDK, so all we need to do here is set u
|
|||
|
||||
#### OS X
|
||||
|
||||
##### Installing aws cli
|
||||
|
||||
The officially supported way of installing the tool is with `pip` as in
|
||||
|
||||
```bash
|
||||
pip install awscli
|
||||
```
|
||||
|
||||
You can also grab the tool with homebrew, although this is not officially supported.
|
||||
|
||||
```bash
|
||||
brew update && brew install awscli
|
||||
```
|
||||
|
||||
Now configure the tool, and verify it works.
|
||||
|
||||
```bash
|
||||
aws configure # Input your credentials here
|
||||
aws iam list-users
|
||||
```
|
||||
|
||||
PyPi is the officially supported `aws cli` download avenue, and kops suggests using it. [More information](https://pypi.python.org/pypi/awscli) on the package.
|
||||
|
||||
#### Other Platforms
|
||||
|
||||
Official documentation [here](http://docs.aws.amazon.com/cli/latest/userguide/installing.html)
|
||||
|
|
Loading…
Reference in New Issue