Closed phopper-pivotal closed 7 years ago
Hi - can you be more specific about which docs you're referring to? The docs I see in the repo do call out that a password-less SSH key is needed (example).
https://github.com/cloudfoundry-incubator/bosh-google-cpi-release/blob/master/docs/bosh/README.md
ok maybe change both links to be passphrase less. on sshkey-gen its a passphrase. with little sleep it does equate directly;
Enter passphrase (empty for no passphrase): Enter same passphrase again:
any idea on how to make a 1-liner that doesn't prompt for a password? it's problematic for sure
ssh-keygen accepts an empty -P (passphrase) option, so something like the following if you want to recommend it...
ssh-keygen -t rsa -P '' -C bosh -f ~/.ssh/bosh
I think -P
is for the old passphrase. This should silence the whole thing: ssh-keygen -t rsa -f ~/.ssh/bosh -C bosh -q -N ""
I'll update the doc...
thank you @evandbrown @dpb587-pivotal
destroyed 2 environments last night thinking wth
finally got smart with sleep and set as ""
Interesting - I've always used -P
, but you're right, -N
is more correct. Thanks for updating the docs.
can docs be updated to indicate for user to not set a passphrase when running
$ ssh-keygen -t rsa -f ~/.ssh/bosh -C bosh
otherwise this error occurs