Skip to content

Commit 3020487

Browse files
committed
coreos private key
1 parent 564b81e commit 3020487

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,17 @@ and copy the binary
9595
```bash
9696
rm -f skycore ; wget http://dunkirk.mcs.anl.gov/~wgerlach/skycore
9797
chmod +x skycore
98-
for i in ${MACHINES} ; do scp -i <your_private_ssh_key> -o StrictHostKeyChecking=no ./skycore core@${i}: ; done
98+
for i in ${MACHINES} ; do scp -i coreos.pem -o StrictHostKeyChecking=no ./skycore core@${i}: ; done
9999
```
100100

101101
## Log in to your CoreOS cluster
102102

103103
Login with forwarding your ssh user agent. Run these commands on your client outside of the CoreOS cluster:
104104
```bash
105+
cd ~/.ssh
106+
ln -s <your private key> coreos.pem
105107
eval $(ssh-agent)
106-
ssh-add <path to your private key>
108+
ssh-add coreos.pem
107109
ssh -A core@<instance>
108110
```
109111
You may want to assign a public IP address to one of you CoreOS instances.

0 commit comments

Comments
 (0)