SSH Key management #539
Closed
orangedeng
started this conversation in
Ideas
Replies: 1 comment
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The SSH key management will have a CLI and UI to management the SSH keys you want to use to connect to your to-install k3s node.
Following data struct would be the SSH key object's:
SSH key management
With the SSH key management, you can do following operations:
id_rsa
andid_rsa.pub
.Both CLI and web UI have above functions.
Cluster provision
In k3s cluster create option, you can specify
--ssh-key-name
to use the stored SSH key pair instead of--ssh-key-path
and--ssh-cert-path
.When using the stored key to provision a new cluster, the keys will be copied to the cluster's directory and the path of the key and cert will be saved to the cluster record.
When provisioning a new cluster in web UI, following changes should be made:
ssh-key-name
. The key will show whether it requires passphrase or not.ssh-key
.TODOs
In the feature release, we are going to support to check or create SSH key pair with the stored one in the provider so that we don't need to provide
--key-pair
parameters.Beta Was this translation helpful? Give feedback.
All reactions