Monday 17 January 2022

SSH keys and variables

Leaving this here to remind my future self ...

I wanted to generate a variable containing my SSH public key ..

I tried to simply copy the key to my clipboard and paste it into the variable: -

export MY_PUB_KEY="ssh-rsa ABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDE foo@bar.com"

which is somewhat unwieldy.

However, given that my public key is in a file: -

id_rsa_04012022.pub

why didn't I simply do this ?

export MY_PUB_KEY=$(cat ~/.ssh/id_rsa_04012022.pub)

Now isn't that simpler ?

No comments:

Note to self - use kubectl to query images in a pod or deployment

In both cases, we use JSON ... For a deployment, we can do this: - kubectl get deployment foobar --namespace snafu --output jsonpath="{...