Skip to content
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

Typos and add note about need for --dns-zone #2817

Merged
merged 1 commit into from
Jul 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions docs/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ for some of these instructions.
ID=$(uuidgen) && aws route53 create-hosted-zone --name subdomain.example.com --caller-reference $ID | jq .DelegationSet.NameServers
```

* You will now go to your registrars page and log in. You will need to create a
* You will now go to your registrar's page and log in. You will need to create a
new **SUBDOMAIN**, and use the 4 NS records received from the above command for the new
**SUBDOMAIN**. This **MUST** be done in order to use your cluster. Do **NOT**
change your top level NS record, or you might take your site offline.
Expand All @@ -206,6 +206,12 @@ guide to include:
kops create cluster --dns private $NAME
```

If you have a mix of public and private zones, you will also need to include the `--dns-zone` argument with the hosted zone id you wish to deploy in:

```
kops create cluster --dns private --dns-zone ZABCDEFG $NAME
```

## Testing your DNS setup

You should now able to dig your domain (or subdomain) and see the AWS Name
Expand Down Expand Up @@ -274,7 +280,7 @@ documentation](http://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#

## Prepare local environment

We're ready to start creating our first cluster! Let's first setup a few
We're ready to start creating our first cluster! Let's first set up a few
environment variables to make this process easier.

```bash
Expand Down