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

Fix old custom build instructions #3585

Merged
merged 1 commit into from
Oct 10, 2017
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/development/adding_a_feature.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ and then push nodeup using:

```
export S3_BUCKET_NAME=<yourbucketname>
make upload S3_BUCKET=s3://${S3_BUCKET_NAME} VERSION=dev
make kops-install upload S3_BUCKET=s3://${S3_BUCKET_NAME} VERSION=dev

export KOPS_BASE_URL=https://${S3_BUCKET_NAME}.s3.amazonaws.com/kops/dev/

Expand Down
10 changes: 5 additions & 5 deletions docs/development/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ can do the following:

```
# cd to your kops repo
export BUILD_BUCKET=your-kops-builds # Change to a bucket for kops builds
make upload S3_BUCKET=s3://${BUILD_BUCKET}
export S3_BUCKET_NAME=<yourbucketname>
make kops-install upload S3_BUCKET=s3://${S3_BUCKET_NAME} VERSION=dev

# That will output s3 paths a it's uploading. Copy the relevant
# kops/git-<foo> path and then:
export KOPS_URL=http://${BUILD_BUCKET}.s3.amazonaws.com/kops/git-<foo>
export KOPS_BASE_URL=https://${S3_BUCKET_NAME}.s3.amazonaws.com/kops/dev/

kops create cluster <clustername> --zones us-east-1b
```

Then follow the test directions above.
Expand Down