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

Commit

Permalink
quickstart-docs: Add ssh-agent instructions
Browse files Browse the repository at this point in the history
Signed-off-by: Suraj Deshmukh <suraj@kinvolk.io>
  • Loading branch information
surajssd committed Apr 23, 2020
1 parent 6e3b6df commit d9aa0fb
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
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

Lokoctl uses Terraform behind the scene and it needs SSH access to controller nodes. For SSH to work add at least one SSH private key corresponding to the public keys specified earlier, 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

Lokoctl uses Terraform behind the scene and it needs SSH access to controller nodes. For SSH to work add at least one SSH private key corresponding to the public keys specified earlier, 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

Lokoctl uses Terraform behind the scene and it needs SSH access to controller nodes. For SSH to work add at least one SSH private key corresponding to the public keys specified earlier, to your `ssh-agent`.

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

Run the following command to create the cluster:

```console
Expand Down

0 comments on commit d9aa0fb

Please sign in to comment.