Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
amcginlay authored Apr 19, 2018
1 parent f520dfb commit 91ce051
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions ops-manager-gcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,6 @@ gcloud compute ssh ubuntu@jumpbox \
--zone "${PCF_AZ_1}"
```

## Configuring jumpbox for use with private GitHub repos

To interract with private repos, we need to _generate_ an SSH key on your jumpbox and _register_ it with GitHub.

The following step are taken from the [GitHub docs](https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/#platform-linux).

### SSH Key Generation

```bash
GITHUB_USER=CHANGE_ME_GITHUB_USER # e.g. [email protected]
eval "$(ssh-agent -s)"
ssh-keygen -t rsa -b 4096 -C "${GITHUB_USER}"
ssh-add ~/.ssh/id_rsa

# inspect the public key which Github will need to know
cat ${HOME}/.ssh/id_rsa.pub
```

### SSH Key Registration

Follow these [GitHub docs](https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/) to get your newly generated SSH key registered with your GitHub account. This involves copying and pasting text between your SSH session and the GitHub website.

## Clone _this_ repo

From the jumpbox:
Expand Down

0 comments on commit 91ce051

Please sign in to comment.