Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

quickstart-docs: Add ssh-agent instructions #325

Merged
merged 1 commit into from
Apr 24, 2020
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
7 changes: 7 additions & 0 deletions docs/quickstarts/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@ guide](../configuration-reference/platforms/aws.md).

### Step 5: Create Lokomotive cluster

Add a private key corresponding to one of the public keys specified in `ssh_pubkeys` to your `ssh-agent`:

```bash
ssh-add ~/.ssh/id_rsa
ssh-add -L
```

Run the following command to create the cluster:

```console
Expand Down
7 changes: 7 additions & 0 deletions docs/quickstarts/baremetal.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,13 @@ guide](../configuration-reference/platform/baremetal.md).

### Step 5: Create Lokomotive Cluster

Add a private key corresponding to one of the public keys specified in `ssh_pubkeys` to your `ssh-agent`:

```bash
ssh-add ~/.ssh/id_rsa
ssh-add -L
```

Run the following command to create the cluster:

```console
Expand Down
7 changes: 7 additions & 0 deletions docs/quickstarts/packet.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@ guide](../configuration-reference/platforms/packet.md).

### Step 5: Create Lokomotive cluster

Add a private key corresponding to one of the public keys specified in `ssh_pubkeys` to your `ssh-agent`:

```bash
ssh-add ~/.ssh/id_rsa
ssh-add -L
```

Run the following command to create the cluster:

```console
Expand Down