Skip to content
This repository was archived by the owner on Apr 11, 2024. It is now read-only.

Commit 27072c6

Browse files
committed
fixup! feat: Add user configuration for all providers
Expand comments
1 parent 650c3cf commit 27072c6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

api/v1alpha1/clusterconfig_types.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,12 +365,16 @@ type User struct {
365365
// Name specifies the user name
366366
Name string `json:"name"`
367367

368-
// HashedPassword specifies a hashed password for the user.
368+
// HashedPassword specifies a hashed password for the user. See your
369+
// distribution's documentation for instructions to create a hashed
370+
// password.
369371
// An empty string is not marshalled, because it is not a valid value.
370372
// +optional
371373
HashedPassword string `json:"hashedPassword,omitempty"`
372374

373-
// SSHAuthorizedKeys specifies a list of ssh authorized keys for the user
375+
// SSHAuthorizedKeys specifies a list of public SSH keys to write to the
376+
// machine. Use the corresponding private SSH keys to authenticate. See SSH
377+
// documentation for instructions to create a key pair.
374378
// +optional
375379
SSHAuthorizedKeys []string `json:"sshAuthorizedKeys,omitempty"`
376380

0 commit comments

Comments
 (0)